Skip to content

Commit

Permalink
add deptry github action
Browse files Browse the repository at this point in the history
  • Loading branch information
lispandfound committed May 14, 2024
1 parent c19df1b commit c6c0e8f
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/deptry.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Deptry Dependency Check

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Setup the minimum required python distribution
- uses: actions/setup-python@v5
with:
python-version: '3.11'
# Install deptry
- run: pip install deptry
# Run deptry to check that all dependencies are present.
- run: deptry .

0 comments on commit c6c0e8f

Please sign in to comment.