this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add Tangled CI pipeline for fmt, clippy, and tests

+25
+25
.tangled/workflows/test.yml
··· 1 + when: 2 + - event: ["push", "pull_request"] 3 + branch: ["main"] 4 + 5 + engine: "nixery" 6 + 7 + dependencies: 8 + nixpkgs: 9 + - rustc 10 + - cargo 11 + - clippy 12 + - rustfmt 13 + - gcc 14 + - pkg-config 15 + - cmake 16 + 17 + steps: 18 + - name: "Check formatting" 19 + command: "cargo fmt -- --check" 20 + 21 + - name: "Clippy" 22 + command: "cargo clippy --all-targets -- -D warnings" 23 + 24 + - name: "Test" 25 + command: "cargo test"