diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 711d2275..3c0399ad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,10 +27,6 @@ jobs: run: make clippy - name: Build Release run: make build-release - - name: Security audit - uses: actions-rs/audit-check@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} rustfmt: name: Rustfmt @@ -39,4 +35,13 @@ jobs: - uses: actions/checkout@master - name: Install Rust run: rustup update stable && rustup default stable && rustup component add rustfmt - - run: cargo fmt -- --check \ No newline at end of file + - run: cargo fmt -- --check + + sec: + name: Security audit + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions-rs/audit-check@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }}