Skip to content

Commit

Permalink
Add pip audit workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Timothy Johnson <[email protected]>
  • Loading branch information
t1m0thyj committed Aug 26, 2024
1 parent 59d3aad commit 9864f65
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Audit

on:
pull_request:
branches:
- main
schedule:
- cron: '0 10 * * *'

jobs:
audit:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Check Vulnerabilities
uses: pypa/[email protected]
with:
inputs: requirements.txt docs/requirements.txt

0 comments on commit 9864f65

Please sign in to comment.