.github/workflows/test.yml340 bytesYAMLView raw1on: 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 17 18 - run: cargo build 19 - run: cargo test 20 - run: cargo fmt --check