Skip to content

⬆️ Bump actions/setup-python from 5.1.0 to 5.2.0 #339

⬆️ Bump actions/setup-python from 5.1.0 to 5.2.0

⬆️ Bump actions/setup-python from 5.1.0 to 5.2.0 #339

Workflow file for this run

name: Lint code
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
concurrency:
group: lint-${{ github.ref_name }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Set up Python
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
with:
python-version: "3.x"
- name: Install nox
run: python -m pip install nox
- name: run pre-commit
run: nox -s lint