Check failing ruff workflow #7
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
# This workflow runs Ruff linter and formatter on the python script. | |
name: Ruff | |
on: | |
push: | |
branches: [main, develop] | |
pull_request: | |
branches: [main, develop] | |
jobs: | |
ruff-lint-format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout python script | |
uses: actions/checkout@v4 | |
with: | |
sparse-checkout: | | |
utils/generate_from_templates.py | |
- name: Run ruff-action | |
uses: astral-sh/ruff-action@v3 |