This repository is currently being migrated. It's locked while the migration is in progress.
test change #39
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: | ||
| pull_request: | ||
| types: [ opened, synchronize ] | ||
| merge_group: | ||
| types: [ checks_requested ] | ||
| push: | ||
| branches: | ||
| - main | ||
| jobs: | ||
| tests: | ||
| uses: ./.github/workflows/test.yml | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| pyVersion: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ] | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
| - name: Unshallow | ||
| run: git fetch --prune --unshallow | ||
| - uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: ${{ matrix.pyVersion }} | ||
| - name: Run tests | ||
| run: make dev install test | ||