My personal-knowledge-system, with deeply integrated task tracking and long term goal planning capabilities.

feat: init ci

suri.codes 5c611090 c31f6bd3

verified
+29
+16
.tangled/workflows/check.yaml
··· 1 + when: 2 + - event: ["push", "pull_request"] 3 + branch: ["main"] 4 + 5 + dependencies: 6 + nixpkgs: 7 + - cargo 8 + - just 9 + 10 + steps: 11 + - name: clippy 12 + command: | 13 + cargo clippy 14 + - name: build 15 + command: | 16 + just build
+13
.tangled/workflows/test.yaml
··· 1 + when: 2 + - event: ["push", "pull_request"] 3 + branch: ["main"] 4 + 5 + dependencies: 6 + nixpkgs: 7 + - cargo 8 + - just 9 + 10 + steps: 11 + - name: run tests 12 + command: | 13 + just test