Skip to content

Bump actions/checkout from 4 to 5 in the action-dependencies group #1742

Bump actions/checkout from 4 to 5 in the action-dependencies group

Bump actions/checkout from 4 to 5 in the action-dependencies group #1742

Workflow file for this run

name: Lint
on:
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: install tests dependencies
run: python -m pip install tox
- name: Lint the code
run: tox -e lint