We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cda44d8 commit 6fedd7aCopy full SHA for 6fedd7a
2 files changed
.github/workflows/go.yml
@@ -6,12 +6,12 @@ jobs:
6
build:
7
runs-on: ubuntu-latest
8
steps:
9
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
10
11
- name: Setup Go
12
- uses: actions/setup-go@v4
+ uses: actions/setup-go@v5
13
with:
14
- go-version: '1.23'
+ go-version-file: 'go.mod'
15
check-latest: true
16
cache: false
17
Makefile
@@ -1,11 +1,3 @@
1
-run:
2
- ./scripts/run.sh $(DAY)
3
-.PHONY: run
4
-
5
-buildall:
- go build -o bin ./days/...
-.PHONY: buildall
-testall: buildall
- go test ./
-.PHONY: testall
+testall:
+ go test ./...
+.PHONY: testall
0 commit comments