Skip to content

Commit 6e4d2a1

Browse files
Merge pull request #2 from bloodsweatncode/addformat
Added Style check
2 parents e034161 + 5876a77 commit 6e4d2a1

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,19 @@ jobs:
2020

2121
- name: Run Tests
2222
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

Comments
 (0)