Fix _changed.html interplay with GITHUB_PULL_REQUEST_NUMBER from work… #269
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: Formatting | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
run-linters: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
allow-prereleases: true | |
- name: Run the linters via pre-commit | |
run: | | |
python -m pip install pre-commit | |
# only run pre-commit on the folder `python_scripts` | |
pre-commit run --files python_scripts/* |