please work arc #42
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: 'CI' | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
jobs: | |
run-tests: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
pythonversion: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: set up python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.pythonversion }} | |
- name: install dependencies | |
run: make install | |
- name: lint with flake8 | |
run: make lint | |
- name: test with pytest | |
run: make coverage |