Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/deptry.yml
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 --no-cache-dir -r requirements.txt
pip install --no-cache-dir deptry
- name: Analysis with deptry
run: |
deptry -vv pypfopt
Loading
Loading