Skip to content

Deploy to PyPi on PR merge #5

Deploy to PyPi on PR merge

Deploy to PyPi on PR merge #5

Workflow file for this run

name: Test
on:
pull_request:
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
- run: cargo fmt --all --check
- run: cargo clippy -- -D warnings
- run: cargo test
- run: cargo run -- --version