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 4f98556 commit 30e24afCopy full SHA for 30e24af
.github/actions/lint/action.yml renamed to .github/actions/check/action.yml
@@ -1,8 +1,14 @@
1
-name: Lint
2
-description: Check the code style
+name: Check
+description: Check the code with audit, fmt and clippy
3
runs:
4
using: composite
5
steps:
6
+ - name: Audit
7
+ shell: bash
8
+ run: |
9
+ cargo install cargo-audit
10
+ cargo audit
11
+
12
- name: Fmt
13
shell: bash
14
run: cargo fmt --check
.github/workflows/build-dev.yml
@@ -64,8 +64,8 @@ jobs:
64
with:
65
version: ${{ steps.gen-version.outputs.VERSION }}
66
67
- - name: Run lint
68
- uses: ./.github/actions/lint
+ - name: Run check
+ uses: ./.github/actions/check
69
70
- name: Run test
71
uses: ./.github/actions/test
0 commit comments