⬆️ Update codecov/codecov-action digest to 5c47607 #818
Workflow file for this run
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
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@main | |
actions: | |
name: Lint GitHub Action Workflows | |
uses: ixm-one/common/.github/workflows/actions.lint.yml@main | |
needs: skip | |
if: needs.skip.outputs.should-skip != 'true' | |
spelling: | |
name: Lint Spelling | |
uses: ixm-one/common/.github/workflows/spellcheck.yml@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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Install Poetry | |
run: pipx install poetry | |
- name: Setup Python | |
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5 | |
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 |