cleanroom implementation of a chess engine. doesn't work :)

jj ci experiment

+20
+20
.tangled/workflows/deploy.yaml
··· 1 + when: 2 + - event: ["push", "pull_request"] 3 + branch: ["trunk"] 4 + 5 + dependencies: 6 + nixpkgs: 7 + - nix 8 + - cargo 9 + - rustc 10 + - rustfmt 11 + - clippy 12 + 13 + steps: 14 + - name: "lint & fmt" 15 + command: | 16 + cargo clippy 17 + cargo fmt --check 18 + - name: test 19 + command: | 20 + cargo test