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.
1 parent b673542 commit e1ba6f8Copy full SHA for e1ba6f8
.github/workflows/bvt.yml
@@ -12,9 +12,7 @@ jobs:
12
uses: actions/checkout@v3
13
- name: Check
14
run: |
15
- make check
16
- make -C compiler check
17
- make -C ttrpc-codegen check
+ make check-all
18
19
make:
20
name: Build
Makefile
@@ -32,3 +32,9 @@ endif
32
check:
33
cargo fmt --all -- --check
34
cargo clippy --all-targets --all-features -- -D warnings
35
+
36
+.PHONY: check-all
37
+check-all:
38
+ $(MAKE) check
39
+ $(MAKE) -C compiler check
40
+ $(MAKE) -C ttrpc-codegen check
0 commit comments