update urls #105
This file contains hidden or 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: Code Consistency Check | |
| on: | |
| push: | |
| branches-ignore: | |
| - main | |
| jobs: | |
| ruff: | |
| runs-on: ubuntu-latest | |
| name: "ruff" | |
| if: github.event.created == false # Skip if this push created a new branch | |
| steps: | |
| - name: actions_python_ruff | |
| uses: davidslusser/actions_python_ruff@v1.0.3 | |
| with: | |
| src: "src/django_project" | |
| command: ruff format src --check | |
| python_version: "3.13" |