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 e24b239 commit f6a109cCopy full SHA for f6a109c
.github/workflows/ci.yml
@@ -35,9 +35,7 @@ jobs:
35
toolchain: ${{ matrix.rust }}
36
- uses: Swatinem/rust-cache@v2
37
- name: Test
38
- uses: actions-rs/cargo@v1
39
- with:
40
- command: test
+ run: cargo test --all-features
41
audit:
42
runs-on: ubuntu-latest
43
steps:
@@ -46,8 +44,7 @@ jobs:
46
44
with:
47
45
toolchain: stable
48
49
- - name: cargo audit
50
- uses: actions-rs/[email protected]
51
52
- token: ${{ secrets.GITHUB_TOKEN }}
+ - run: |
+ cargo install cargo-audit
+ cargo audit
53
0 commit comments