We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e034161 + 5876a77 commit 6e4d2a1Copy full SHA for 6e4d2a1
1 file changed
.github/workflows/ci.yml
@@ -20,3 +20,19 @@ jobs:
20
21
- name: Run Tests
22
run: go test --cover ./...
23
+
24
+ style:
25
+ name: Style
26
+ runs-on: ubuntu-latest
27
28
+ steps:
29
+ - name: Check out code
30
+ uses: actions/checkout@v4
31
32
+ - name: Set up Go
33
+ uses: actions/setup-go@v5
34
+ with:
35
+ go-version: "1.23.0"
36
37
+ - name: Check Format
38
+ run: test -z $(go fmt ./...)
0 commit comments