Update README.md #8
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: Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
matrix: | |
# 3.6 will reach EoL in December 2021 | |
# https://devguide.python.org/#status-of-python-branches | |
python-version: [ "3.7", "3.8", "3.9", "3.10" ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
- name: Run tests | |
run: | | |
python -m pip install --upgrade pip | |
pip install pytest | |
python -m pytest tests |