fix: update download-artifact action to v7 and enhance release verifi… #92
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: Pytest | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest, windows-11-arm] | |
| python: ["3.10", "3.11", "3.12", "3.13", "3.14"] | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: true | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Setup Python ${{ matrix.python }} | |
| run: uv python install ${{ matrix.python }} | |
| - name: Build and install | |
| run: uv sync --group dev | |
| - name: Test with pytest | |
| run: uv run pytest |