Skip to content

Commit d5f16f4

Browse files
committed
ci: Add Ruff linter as GitHub Action.
Executes Ruff as linter tool to check code pattern. Signed-off-by: Paulo Vital <paulo.vital@ibm.com> Signed-off-by: Cagri Yonca <cagri@ibm.com>
1 parent 0a0dc38 commit d5f16f4

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.github/workflows/linter.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Ruff
2+
on: [ push, pull_request ]
3+
jobs:
4+
ruff:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v4
8+
- uses: astral-sh/ruff-action@v3
9+
with:
10+
src: >-
11+
./src
12+
./tests
13+
./tests_aws

0 commit comments

Comments
 (0)