Presume the pod is relative to the repo path (if it exists) (#91) #500
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: Lint Checks | |
| on: | |
| pull_request: | |
| branches: '*' | |
| push: | |
| branches: '*' | |
| jobs: | |
| test: | |
| name: "Run linter" | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: "Clone project repository" | |
| uses: actions/checkout@v3 | |
| - name: "Install Python" | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.12' | |
| - name : "Run flake8" | |
| uses: py-actions/flake8@v2 |