From 23907b5d4c27e93c921d32d13d7bdbef4bb1654b Mon Sep 17 00:00:00 2001
From: Veetaha <gerzoh1@gmail.com>
Date: Wed, 26 Feb 2020 22:26:32 +0200
Subject: cicd: add cargo audit

---
 .github/workflows/ci.yaml | 10 ++++++++++
 1 file changed, 10 insertions(+)

(limited to '.github/workflows')

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:
       - trying
 
 jobs:
+  rust-audit:
+    name: Audit Rust vulnerabilities
+    runs-on: ubuntu-latest
+    steps:
+        - name: Checkout repository
+          uses: actions/checkout@v1
+
+        - run: cargo install cargo-audit
+        - run: cargo audit
+
   rust:
     name: Rust
     runs-on: ${{ matrix.os }}
-- 
cgit v1.2.3