Skip to content

Commit

Permalink
Create deptry
Browse files Browse the repository at this point in the history
  • Loading branch information
tschm authored Dec 6, 2024
1 parent 65cabce commit 97b081c
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/deptry
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# This workflow will analyze Python dependencies, see https://deptry.com

name: deptry

on:
push

jobs:
deptry:
runs-on: ubuntu-latest
#env:
# MPLBACKEND: Agg # https://github.com/orgs/community/discussions/26434

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: 3.12
cache: "pip"
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install deptry
- name: Analysis with deptry
run: |
deptry -vv pypfopt

0 comments on commit 97b081c

Please sign in to comment.