diff options
author | Aleksey Kladov <[email protected]> | 2020-02-26 21:00:30 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-02-26 21:00:30 +0000 |
commit | cfc6abed9db730ed56d8158d2091d718abc34183 (patch) | |
tree | 02ae1d0c2c8574b187bab58b8cb0d0af8fa7dada | |
parent | 5fcb4bb5093158bed081f32a7b8091b7015b49b4 (diff) | |
parent | 23907b5d4c27e93c921d32d13d7bdbef4bb1654b (diff) |
Merge pull request #3330 from Veetaha/feature/cargo-audit
cicd: add cargo audit
-rw-r--r-- | .github/workflows/ci.yaml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2df40a83c..974d18584 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml | |||
@@ -8,6 +8,16 @@ on: | |||
8 | - trying | 8 | - trying |
9 | 9 | ||
10 | jobs: | 10 | jobs: |
11 | rust-audit: | ||
12 | name: Audit Rust vulnerabilities | ||
13 | runs-on: ubuntu-latest | ||
14 | steps: | ||
15 | - name: Checkout repository | ||
16 | uses: actions/checkout@v1 | ||
17 | |||
18 | - run: cargo install cargo-audit | ||
19 | - run: cargo audit | ||
20 | |||
11 | rust: | 21 | rust: |
12 | name: Rust | 22 | name: Rust |
13 | runs-on: ${{ matrix.os }} | 23 | runs-on: ${{ matrix.os }} |