test: Add ruff linter github action
Added linting check with ruff in github actions Test COG-650
This commit is contained in:
parent
875dd1055e
commit
856f228981
1 changed files with 9 additions and 0 deletions
9
.github/workflows/ruff_lint.yaml
vendored
Normal file
9
.github/workflows/ruff_lint.yaml
vendored
Normal 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
|
||||||
Loading…
Add table
Reference in a new issue