This repository was archived by the owner on Jul 14, 2026. It is now read-only.
π Pin codecov/codecov-action action to v6.0.0 57e3a13 (#496) #1129
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 | |
| on: | |
| pull_request: | |
| types: [synchronize, opened, edited] | |
| push: | |
| branches: [main] | |
| jobs: | |
| skip: | |
| name: Skip Duplicate Actions | |
| uses: ixm-one/common/.github/workflows/actions.skip.yml@68418f609f1536adc3c3861b0a0b0e63d78ecc6e # main | |
| actions: | |
| name: Lint GitHub Action Workflows | |
| uses: ixm-one/common/.github/workflows/actions.lint.yml@68418f609f1536adc3c3861b0a0b0e63d78ecc6e # main | |
| needs: skip | |
| if: needs.skip.outputs.should-skip != 'true' | |
| spelling: | |
| name: Lint Spelling | |
| uses: ixm-one/common/.github/workflows/spellcheck.yml@68418f609f1536adc3c3861b0a0b0e63d78ecc6e # main | |
| needs: skip | |
| if: needs.skip.outputs.should-skip != 'true' | |
| python: | |
| name: Lint Python | |
| runs-on: ubuntu-latest | |
| needs: skip | |
| if: needs.skip.outputs.should-skip != 'true' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Install Poetry | |
| run: pipx install poetry | |
| - name: Setup Python | |
| uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 | |
| with: | |
| python-version: '3.12' | |
| cache: poetry | |
| - name: Install Tools | |
| run: poetry install --with=dev | |
| - run: poetry run ruff format --check | |
| - run: poetry run ruff check | |
| - run: poetry run pyright src tests |