Skip to content

Commit d246088

Browse files
committed
Improve GitHub actions
1 parent 33f912a commit d246088

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/build-and-snapshot.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,11 @@ jobs:
3939
- name: Lint Go files
4040
run: go fmt ./...
4141

42+
- name: Install
43+
run: make install
44+
4245
- name: Run tests
43-
run: go test ./... -v
46+
run: go test
4447

4548
- name: Build binary
4649
run: python3 .github/workflows/build.py

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,11 @@ jobs:
3232
- name: Lint Go files
3333
run: go fmt ./...
3434

35+
- name: Install
36+
run: make install
37+
3538
- name: Run tests
36-
run: go test ./... -v
39+
run: go test
3740

3841
- name: Build binary
3942
run: python3 .github/workflows/build.py

0 commit comments

Comments
 (0)