Skip to content

Run Linter [051bbff3fdb29187cf3551d42b0397f2e80b3e13] #7

Run Linter [051bbff3fdb29187cf3551d42b0397f2e80b3e13]

Run Linter [051bbff3fdb29187cf3551d42b0397f2e80b3e13] #7

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