We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9eba08c commit e2f79b7Copy full SHA for e2f79b7
.github/workflows/go.yml
.github/workflows/scripts.yml
@@ -0,0 +1,30 @@
1
+name: scripts
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ - v[0-9]*
8
+ pull_request:
9
10
11
12
13
+jobs:
14
+ unit-test:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - uses: actions/setup-go@v5
19
+ with:
20
+ go-version-file: "go.mod"
21
+ - run: ./scripts/subtests/unit-test
22
23
+ lint:
24
25
26
27
28
29
30
+ - run: ./scripts/subtests/lint
0 commit comments