test: Add ruff linter github action

Added linting check with ruff in github actions

Test COG-650
This commit is contained in:
Igor Ilic 2024-12-18 14:04:49 +01:00
parent 875dd1055e
commit 856f228981

9
.github/workflows/ruff_lint.yaml vendored Normal file
View file

@ -0,0 +1,9 @@
name: Ruff
on: [ push, pull_request ]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v2