Skip to content

Commit b2784e5

Browse files
committed
Merge branch 'feature/github-actions' into develop
2 parents e29c1b9 + 3161f9d commit b2784e5

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/go.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ jobs:
2424
# prettier-ignore
2525
go-version: '1.22'
2626

27+
- name: Download dependencies
28+
working-directory: ${{github.workspace}}/go-algorithm
29+
run: make module
30+
2731
- name: Test
2832
working-directory: ${{github.workspace}}/go-algorithm
29-
run: make
33+
run: make test

go-algorithm/Makefile

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
.PHONY: all
22
all: download verify test
33

4+
.PHONY: module
5+
module: download verify
6+
47
.PHONY: fmt
58
fmt:
69
go fmt ./...

0 commit comments

Comments
 (0)