Skip to content

Changes generated by af23d6ac7be7e8c08ca9d5986093b52b9b7c8405 #242

Changes generated by af23d6ac7be7e8c08ca9d5986093b52b9b7c8405

Changes generated by af23d6ac7be7e8c08ca9d5986093b52b9b7c8405 #242

Workflow file for this run

name: build
on: push
jobs:
test:
strategy:
fail-fast: false
matrix:
python_version: [3.11, '3.10', 3.9, 3.8]
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
cache-dependency-path: "**/requirements-dev.txt"
- name: Test
run: |-
pip install -r requirements-dev.txt
pytest