-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Taskfile.yml
58 lines (56 loc) · 1.08 KB
/
Taskfile.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# https://taskfile.dev
version: "3"
tasks:
default:
cmd: task --list
silent: true
ci:full:
desc: Run CI locally in containers
cmd: act
ci:local:
desc: Run CI locally
aliases: [ci]
deps:
[audit, doc, fmt, test, nix:check, nix:build, clippy, pre-commit, build]
nix:check:
desc: Run Nix CI checks
cmds:
- nix flake check
nix:build:
desc: Run Nix Build
cmds:
- nix build
clippy:
desc: Run clippy
cmd: cargo clippy
pre-commit:
desc: Run pre-commit
cmd: pre-commit run --all-files --show-diff-on-failure
fmt:
desc: Run all formatters
sources:
- ./**/*.rs
- ./**/*.nix
cmds:
- cargo fmt --all
- alejandra .
test:
desc: Run all tests
aliases: [t]
cmd: cargo nextest run
doc:
desc: Build the documentation
cmd: cargo doc
audit:
desc: Run cargo security audit
sources:
- Cargo.lock
- flake.lock
cmd: cargo audit
build:
desc: Build the project
aliases: [b]
sources:
- ./**/*.rs
- ./Cargo*
cmd: cargo build