diff options
author | Veetaha <[email protected]> | 2020-02-26 20:26:32 +0000 |
---|---|---|
committer | Veetaha <[email protected]> | 2020-02-26 20:28:23 +0000 |
commit | 23907b5d4c27e93c921d32d13d7bdbef4bb1654b (patch) | |
tree | e87127110a87dc09042ed157cb882dd760f79cc6 | |
parent | d3040c0deba8266044029a6479a1c12c28e72750 (diff) |
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 8ab47106d..ff971dc08 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 }} |