Skip to content

build(deps): bump actions/setup-python from 5.1.1 to 5.3.0 #188

build(deps): bump actions/setup-python from 5.1.1 to 5.3.0

build(deps): bump actions/setup-python from 5.1.1 to 5.3.0 #188

Workflow file for this run

name: "Lint"
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ruff:
name: "Ruff"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout the repository"
uses: "actions/checkout@v4"
- name: "Set up Python"
uses: actions/setup-python@v5.3.0
with:
python-version: "3.10"
cache: "pip"
- name: "Install requirements"
run: python3 -m pip install -r requirements.txt
- name: "Run"
run: python3 -m ruff check .