Skip to content

Rebuilding docs requirements tree to get the builds working again. #118

Rebuilding docs requirements tree to get the builds working again.

Rebuilding docs requirements tree to get the builds working again. #118

name: Check Python dependencies
on:
pull_request:
branches: [ master ]
paths:
- 'pyproject.toml'
- 'poetry.lock'
jobs:
check-python-dependencies:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: make dev-env
- name: Check if project's Python dependencies files are up to date
run: |
make update-requirements
test -z "$(git status --short)"