We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e153c6 commit 5914666Copy full SHA for 5914666
.github/workflows/ci.yaml
@@ -9,6 +9,21 @@ on:
9
workflow_call:
10
11
jobs:
12
+ GoFmt:
13
+ runs-on: ubuntu-latest
14
+ name: Check format with go fmt
15
+ steps:
16
+ - name: Check out code
17
+ uses: actions/checkout@v4
18
+ - name: Set up Go env
19
+ uses: actions/setup-go@v4
20
+ with:
21
+ go-version: '1.18'
22
+ - name: Run go fmt
23
+ run: |
24
+ go version
25
+ go fmt ./...
26
+
27
Test:
28
runs-on: ubuntu-latest
29
strategy:
0 commit comments