Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: Lint (ruff)
on:
push:
branches:
- main
- develop
pull_request:
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v3
with:
args: "check --output-format full"