We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4036415 + 0f37aa5 commit f40a581Copy full SHA for f40a581
1 file changed
.github/workflows/ruff.yml
@@ -1,15 +1,30 @@
1
-name: "ruff format checking"
+name: "Ruff CI"
2
3
on:
4
push:
5
- branches: [ "master" ]
+ branches: [ "master", "development" ]
6
pull_request:
7
+ branches: [ "master" , "development" ]
8
9
jobs:
10
- lint:
+ linter:
11
runs-on: ubuntu-latest
12
steps:
13
- - uses: astral-sh/ruff-action@v2
+ - name: Checkout code
14
+ uses: actions/checkout@v2
15
+
16
+ - name: Ruff linting check
17
+ uses: astral-sh/ruff-action@v2
18
+ with:
19
+ args: "check --no-fix"
20
21
+ formatter:
22
+ runs-on: ubuntu-latest
23
+ steps:
24
25
26
27
+ - name: Ruff formatting check
28
29
with:
30
args: "format --check"
0 commit comments