sync: mileszim/seekrit@c56f13f4e786491bff80f2bd25cfe3a5ba70d49f #7
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
| # CI for this mirror: run the cross-implementation vector test on every | |
| # supported Python. Nothing here publishes — releases are cut from seekrit's | |
| # monorepo. This file is overwritten on each sync. | |
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python }} | |
| - name: Install | |
| run: pip install . | |
| - name: Vector test | |
| run: python -m unittest discover -s tests -v |