Skip to content

Update link

Update link #223

Workflow file for this run

name: Lint python
on:
push:
branches:
- stable
- develop
pull_request:
jobs:
code-style:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
name: Python ${{ matrix.python-version }} on ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run black linter
uses: psf/black@stable
with:
options: "--check --verbose"
src: "./"
use_pyproject: true
- name: Run ruff linter
uses: astral-sh/ruff-action@v3
with:
version-file: "./pyproject.toml"