Pruned list of top level changes that trigger all must run state #264
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check if pyproject.toml file is up to date | |
on: push | |
jobs: | |
static-code-analysis: | |
name: Check pyproject file | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
id: checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.12 | |
id: setup-python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- name: Update pip and install dependencies | |
id: install-dependencies | |
run: python -m pip install --upgrade pip && pip install --no-deps -r ./lock/requirements-dev.txt | |
- name: Check pyproject.toml | |
id: check-pyproject | |
run: | | |
./scripts/update_pyproject.py --check |