Skip to content

Commit

Permalink
Outdated dependencies CI job
Browse files Browse the repository at this point in the history
  • Loading branch information
tisnik committed Jan 31, 2025
1 parent b63fcc0 commit a8f8dbe
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/outdated_dependencies.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: List outdated dependencies

on:
- push
- pull_request

jobs:
list_outdated_dependencies:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Check Python version
run: python --version
- name: PDM installation
run: pip install --user pdm
- name: List outdated dependencies
run: pdm outdated

0 comments on commit a8f8dbe

Please sign in to comment.