There was an error while loading. Please reload this page.
1 parent 4cc394a commit 2276654Copy full SHA for 2276654
1 file changed
.circleci/config.yml
@@ -7,6 +7,23 @@
7
#
8
version: 2
9
jobs:
10
+ audit:
11
+ docker:
12
+ - image: circleci/rust:latest
13
+ steps:
14
+ - checkout
15
+ - run:
16
+ name: Setup rust
17
+ command: |
18
+ rustup install stable
19
+ rustup default stable
20
+ rustup update
21
+ cargo install cargo-audit
22
+ rustc --version
23
24
+ name: Do audit
25
26
+ cargo audit
27
build:
28
docker:
29
- image: docker:18.03.0-ce
@@ -76,6 +93,10 @@ workflows:
76
93
77
94
build-test-deploy:
78
95
96
+ - audit:
97
+ filters:
98
+ tags:
99
+ only: /.*/
79
100
- build:
80
101
filters:
81
102
tags:
0 commit comments