Skip to content

⬆️ Update actions/setup-python digest to 39cd149 #717

⬆️ Update actions/setup-python digest to 39cd149

⬆️ Update actions/setup-python digest to 39cd149 #717

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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Install Poetry
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # 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