Skip to content
Open
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
31 changes: 31 additions & 0 deletions .github/workflows/dependency-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Dependency Check

on:
push:
branches:
- main
- staging
pull_request:
branches:
- main
- staging

jobs:
dependency-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: uv sync --locked --all-extras
working-directory: ./python
- name: Check for dependency issues
run: |
source ${{ github.workspace }}/python/.venv/bin/activate
pip check
working-directory: ./python