An easy-to-host PDS on the ATProtocol, iPhone and MacOS. Maintain control of your keys and data, always.
1
fork

Configure Feed

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

feat(MM-68): add a ci workflow

authored by

Malpercio and committed by
Tangled
2fb4a8c9 cf833fbd

+24
+24
.tangled/workflows/ci.yaml
··· 1 + --- 2 + when: 3 + - event: ["push", "pull_request", "manual"] 4 + branch: ["main"] 5 + 6 + engine: nixery 7 + 8 + dependencies: 9 + nixpkgs: 10 + - rustc 11 + - cargo 12 + - clippy 13 + - rustfmt 14 + - sqlite 15 + 16 + steps: 17 + - name: Check formatting 18 + run: cargo fmt --all --check 19 + - name: Clippy 20 + run: cargo clippy --workspace -- -D warnings 21 + - name: Test 22 + run: cargo test --workspace 23 + - name: Audit 24 + run: cargo audit