We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e29c1b9 + 3161f9d commit b2784e5Copy full SHA for b2784e5
.github/workflows/go.yml
@@ -24,6 +24,10 @@ jobs:
24
# prettier-ignore
25
go-version: '1.22'
26
27
+ - name: Download dependencies
28
+ working-directory: ${{github.workspace}}/go-algorithm
29
+ run: make module
30
+
31
- name: Test
32
working-directory: ${{github.workspace}}/go-algorithm
- run: make
33
+ run: make test
go-algorithm/Makefile
@@ -1,6 +1,9 @@
1
.PHONY: all
2
all: download verify test
3
4
+.PHONY: module
5
+module: download verify
6
7
.PHONY: fmt
8
fmt:
9
go fmt ./...
0 commit comments