Repo for designs & driver for a TA7642 powered lightning detector
at main 22 lines 474 B view raw
1when: 2 - event: ["push", "pull_request"] 3 branch: main 4 5engine: nixery 6 7dependencies: 8 nixpkgs: 9 - clang 10 - rustup 11 - rustfmt 12 - cargo-nextest 13 14steps: 15 - name: Install latest stable 16 command: rustup toolchain install stable 17 - name: Format check 18 command: cargo fmt --all --check 19 - name: Tests 20 command: cargo nextest run --workspace --locked --no-fail-fast 21 - name: Doc Tests 22 command: cargo test --workspace --locked --doc --no-fail-fast