aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorVeetaha <[email protected]>2020-02-26 20:26:32 +0000
committerVeetaha <[email protected]>2020-02-26 20:28:23 +0000
commit23907b5d4c27e93c921d32d13d7bdbef4bb1654b (patch)
treee87127110a87dc09042ed157cb882dd760f79cc6 /.github
parentd3040c0deba8266044029a6479a1c12c28e72750 (diff)
cicd: add cargo audit
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yaml10
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
10jobs: 10jobs:
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 }}