Skip to content

Commit 6476caa

Browse files
committed
test all the things
1 parent 2002ced commit 6476caa

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,14 @@ jobs:
1515
runs-on: ${{ matrix.os }}
1616
steps:
1717
- uses: actions/checkout@v2
18-
- name: Run cargo test
18+
- name: Run cargo test --all
1919
uses: actions-rs/cargo@v1
2020
with:
2121
command: test
2222
args: --all
23+
- name: Run cargo test --all-targets
24+
uses: actions-rs/cargo@v1
25+
with:
26+
command: test
27+
args: --all-targets
28+

0 commit comments

Comments
 (0)