Skip to content

Commit a77f940

Browse files
committed
add workflow to run the linter
1 parent f4be0d2 commit a77f940

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Lint the testing code
2+
3+
on:
4+
pull_request:
5+
paths: [ tests/** ]
6+
branches: [ main ]
7+
# Allow manual trigger
8+
workflow_dispatch: {}
9+
10+
permissions:
11+
contents: read
12+
13+
jobs:
14+
testing-code-lint:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Checkout
18+
uses: actions/checkout@v6
19+
20+
- name: Install uv
21+
uses: astral-sh/setup-uv@v7
22+
23+
- name: Lint the testing code
24+
working-directory: tests
25+
run: make lint

0 commit comments

Comments
 (0)