Skip to content

Run Linter [4c8726430e437dc66e20090a026dcb0a5257a8c6] #18

Run Linter [4c8726430e437dc66e20090a026dcb0a5257a8c6]

Run Linter [4c8726430e437dc66e20090a026dcb0a5257a8c6] #18

Workflow file for this run

on:
push:
branches:
- develop
- releases/**
pull_request:
branches:
- develop
- releases/**
name: linter
run-name: Run Linter [${{ github.sha }}]
jobs:
lint:
name: Run Linter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: "${{ github.ref }}"
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: |
python -m pip install --upgrade pip
pip install ruff
- run: |
ruff check