Skip to content

chore(deps): bump actions/setup-python from 5.6.0 to 6.0.0 #62

chore(deps): bump actions/setup-python from 5.6.0 to 6.0.0

chore(deps): bump actions/setup-python from 5.6.0 to 6.0.0 #62

Workflow file for this run

name: lint
on:
push:
branches: [main]
pull_request_target:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.pull_request.number || '0' }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2 # v4.2.2
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
with:
python-version-file: "pyproject.toml"
cache: "pip"
- name: Install dependencies
run: pip install .[lint]
- name: Run check
run: ruff check && ruff format --check && mypy src/main.py