Skip to content

Bump the testing group in /scripts with 2 updates #8

Bump the testing group in /scripts with 2 updates

Bump the testing group in /scripts with 2 updates #8

Workflow file for this run

name: Python Style
on:
pull_request:
paths:
# Only trigger on changes to Python source.
- 'scripts/**.py'
- 'tests/**.py'
- 'scripts/requirements.txt'
- 'scripts/pyproject.toml'
- 'scripts/setup.py'
- 'scripts/setup.cfg'
jobs:
enforce:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: ./.github/actions/setup-python
- name: Install style tooling
run: make venv.codestyle
- name: Run formatter
run: make py.ci.format
- name: Run linter
run: make py.lint