Skip to content

Commit

Permalink
Create pip-audit.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Ry Jones <ry@linux.com>
  • Loading branch information
ryjones committed Jun 23, 2022
1 parent c88892a commit 02ee06f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/pip-audit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: pip-audit

on:
workflow_dispatch:

permissions:
contents: read

jobs:
selftest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install
run: |
python -m venv env/
source env/bin/activate
python -m pip install .
- uses: trailofbits/gh-action-pip-audit@v0.0.4
with:
virtual-environment: env/
local: true

0 comments on commit 02ee06f

Please sign in to comment.