Skip to content

⬆️ Bump actions/download-artifact from 3.0.2 to 4.1.6 #283

⬆️ Bump actions/download-artifact from 3.0.2 to 4.1.6

⬆️ Bump actions/download-artifact from 3.0.2 to 4.1.6 #283

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@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
with:
python-version: "3.x"
- name: Install nox
run: python -m pip install nox
- name: run pre-commit
run: nox -s lint