updating workflows and django version #100
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 Metrics Analysis (radon) | |
| on: | |
| push: | |
| branches-ignore: | |
| - main | |
| jobs: | |
| radon: | |
| runs-on: ubuntu-latest | |
| name: "radon" | |
| if: github.event.created == false # Skip if this push created a new branch | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: davidslusser/actions_python_radon@v1.0.0 | |
| with: | |
| src: "django_project" |