this repo has no description
0
fork

Configure Feed

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

build: taskfile cleanup

+8 -2
+8 -2
Taskfile.yml
··· 1 1 # https://taskfile.dev 2 2 3 + # These are the helper commands used for managing/testing the repo. 4 + 5 + # TODO: These are an odd mix of nix and non-nix commands, which should probably be separated somehow. 6 + 3 7 version: "3" 4 8 5 9 vars: ··· 14 18 cmd: act 15 19 sources: 16 20 - ./**/* 17 - ci:local: 21 + ci: 18 22 desc: Run CI locally 23 + aliases: [ci:local] 19 24 deps: [audit, fmt, test, nix:check, nix:build, clippy, pre-commit, build] 20 25 nix:check: 21 26 desc: Run Nix CI checks ··· 34 39 cmd: cargo clippy 35 40 pre-commit: 36 41 desc: Run pre-commit 37 - cmd: pre-commit run --all-files --show-diff-on-failure 42 + cmd: nix flake check 38 43 fmt: 39 44 desc: Run all formatters 40 45 sources: ··· 70 75 coverage: 71 76 desc: Run coverage 72 77 aliases: [cov] 78 + # Many tools don't like the file references from `nix build .#coverage`, so we need to run this outside nix 73 79 cmd: cargo tarpaulin --skip-clean --include-tests --output-dir coverage --out lcov --no-default-features