Skip to content

⬆️ Update codecov/codecov-action action to v5 #814

⬆️ Update codecov/codecov-action action to v5

⬆️ Update codecov/codecov-action action to v5 #814

Workflow file for this run

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