Skip to content

sync: mileszim/seekrit@c56f13f4e786491bff80f2bd25cfe3a5ba70d49f #7

sync: mileszim/seekrit@c56f13f4e786491bff80f2bd25cfe3a5ba70d49f

sync: mileszim/seekrit@c56f13f4e786491bff80f2bd25cfe3a5ba70d49f #7

Workflow file for this run

# 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