Changes generated by 31ce9473f1b351d68f0c9f8f35107b24197a8de2 #357
This file contains hidden or 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: build | |
| on: push | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python_version: [3.12, 3.11, '3.10', 3.9, 3.8] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3.1.0 | |
| - 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 |