We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6efa408 commit d08fb12Copy full SHA for d08fb12
.github/workflows/test.yaml
@@ -27,6 +27,12 @@ jobs:
27
toolchain: stable
28
override: true
29
30
+ - name: run unit tests
31
+ uses: actions-rs/cargo@v1
32
+ with:
33
+ command: test
34
+ args: -v -- --nocapture
35
+
36
- name: run integration tests
37
uses: actions-rs/cargo@v1
38
with:
Makefile
@@ -3,5 +3,12 @@ generate:
3
./update.sh
4
5
.PHONY: test.all
6
-test.all:
+test.all: test.unit test.integration
7
8
+.PHONY: test.unit
9
+test.unit:
10
+ cargo test -vv -- --nocapture
11
12
+.PHONY: test.integration
13
+test.integration:
14
cargo test -vv -- --nocapture --ignored
0 commit comments