Skip to content

Update Python testing versions #78

Update Python testing versions

Update Python testing versions #78

---
name: Quality Assurance
on:
push: ~
pull_request: ~
jobs:
build:
name: '[Build/test] Python ${{ matrix.python }}'
runs-on: ubuntu-latest
strategy:
matrix:
python: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- run: python -m pip install --upgrade pipenv wheel
- run: pipenv install
- run: pipenv run "pytest"