Skip to content

Commit

Permalink
GH-41: Add cargo audit
Browse files Browse the repository at this point in the history
  • Loading branch information
SetZero committed May 15, 2023
1 parent 1de6377 commit f08da03
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
types: [opened, synchronize, reopened, closed]
branches:
- "master"
- "develop"

env:
app_name: Fancy Mumble
Expand All @@ -30,6 +31,21 @@ jobs:
# with:
# working-directory: src-tauri
# args: --tests
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: install audit
working-directory: src-tauri
run: cargo install --force cargo-audit
- name: lockfile
working-directory: src-tauri
run: cargo generate-lockfile
- name: audit
working-directory: src-tauri
run: cargo audit

clippy:
runs-on: ubuntu-latest
Expand Down

0 comments on commit f08da03

Please sign in to comment.