Skip to main content

.github/workflows/test.yml

1on:
2 push:
3 branches:
4 - main
5 pull_request:
6 branches:
7 - main
8name: build
9jobs:
10 build:
11 runs-on: ubuntu-latest
12 steps:
13 - uses: actions/checkout@v6
14 - uses: dtolnay/rust-toolchain@v1
15 with:
16 toolchain: stable
18 - run: cargo build
19 - run: cargo test
20 - run: cargo fmt --check