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 2b4f80b commit 189e6c2Copy full SHA for 189e6c2
.github/workflows/ci.yml
@@ -27,10 +27,6 @@ jobs:
27
run: make clippy
28
- name: Build Release
29
run: make build-release
30
- - name: Security audit
31
- uses: actions-rs/audit-check@v1
32
- with:
33
- token: ${{ secrets.GITHUB_TOKEN }}
34
35
rustfmt:
36
name: Rustfmt
@@ -39,4 +35,13 @@ jobs:
39
- uses: actions/checkout@master
40
- name: Install Rust
41
37
run: rustup update stable && rustup default stable && rustup component add rustfmt
42
- - run: cargo fmt -- --check
38
+ - run: cargo fmt -- --check
+
+ sec:
+ name: Security audit
+ runs-on: ubuntu-latest
43
+ steps:
44
+ - uses: actions/checkout@v2
45
+ - uses: actions-rs/audit-check@v1
46
+ with:
47
+ token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments