Bump cryptography-x509 from cb5ad84
to e093bb2
in /rust in the actions group across 1 directory
#42
Workflow file for this run
This file contains 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: Unit tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
strategy: | |
matrix: | |
python: | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
- "3.13" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install the latest version of uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
version: "0.4.18" | |
enable-cache: true | |
cache-dependency-glob: pyproject.toml | |
- name: Install Python ${{ matrix.python }} | |
run: uv python install ${{ matrix.python }} | |
- name: Setup rust | |
uses: dtolnay/rust-toolchain@1482605bfc5719782e1267fd0c0cc350fe7646b8 | |
with: | |
components: rustfmt | |
toolchain: 1.81.0 | |
- name: test | |
run: make test INSTALL_EXTRA=test |