Skip to content

Commit

Permalink
ci(github): add Cargo Audit job in Analysis workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ivangabriele committed Jun 8, 2024
1 parent 6e45354 commit 6da6f03
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,17 @@ jobs:
uses: github/codeql-action/analyze@v3
with:
category: '/language:${{matrix.language}}'

cargo_audit:
name: Cargo Audit
runs-on: 'ubuntu-latest'
container:
image: ivangabriele/tauri:debian-bullseye-18
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install cargo-audit
run: cargo install cargo-audit
- name: Run
run: cargo audit
working-directory: ./src-tauri

0 comments on commit 6da6f03

Please sign in to comment.