Skip to content

target a specific python version #3

target a specific python version

target a specific python version #3

Workflow file for this run

name: Test
on:
pull_request:
merge_group:
push:
branches:
- main
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- run: cargo fmt --all --check
- run: cargo clippy --all-features -- -D warnings
- run: cargo test --all-features