Update github actions to new python version, add macOS to runners. Al… #553
Workflow file for this run
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: Run Tests | |
on: | |
- push | |
- pull_request | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latests, windows-latest] | |
python-version: ['3.10', '3.11'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Setup venv and pip | |
run: | | |
python3 -m ensurepip | |
pip -V | |
python3 -m pip -V | |
python3 -m venv venv | |
- name: Setup environment (Unix) | |
if: runner.os != 'Windows' | |
run: source venv/bin/activate | |
- name: Setup environment (Windows) | |
if: runner.os == 'Windows' | |
run: .\\venv\\Scripts\\activate.bat | |
- name: Install the package | |
run: pip install -e ".[testing]" | |
- name: Run the tests | |
run: | | |
pytest tests | |
mypy src tests | |
flake8 src tests |