We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
cargo fmt
1 parent 3631ab0 commit ef870cbCopy full SHA for ef870cb
.github/workflows/main.yml
@@ -42,7 +42,7 @@ jobs:
42
uses: Swatinem/rust-cache@v2
43
44
- name: Build
45
- run: just build
+ run: just check && just build
46
47
- name: Run unit tests
48
run: just unit
Justfile
@@ -2,8 +2,10 @@
2
build:
3
make
4
5
+# Quick checks
6
check:
7
cargo t --workspace --no-run
8
+ cargo fmt --check
9
10
# Run unit tests (excludes integration tests)
11
unit *ARGS:
0 commit comments