Formatted #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Python A38 | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
# invoke the pipeline manually | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Work around Apt caching issues | |
run: make ci-workaround | |
- name: Install OS packages | |
run: make install-os | |
- name: Install Pip packages | |
run: make install-py | |
- name: Lint | |
run: make lint | |
- name: Run the tests | |
run: make test | |
- name: Install the package | |
run: make install-package |