Skip to content

Commit 6fedd7a

Browse files
committed
Test fix
1 parent cda44d8 commit 6fedd7a

2 files changed

Lines changed: 6 additions & 14 deletions

File tree

.github/workflows/go.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ jobs:
66
build:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@v6
1010

1111
- name: Setup Go
12-
uses: actions/setup-go@v4
12+
uses: actions/setup-go@v5
1313
with:
14-
go-version: '1.23'
14+
go-version-file: 'go.mod'
1515
check-latest: true
1616
cache: false
1717

Makefile

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
run:
2-
./scripts/run.sh $(DAY)
3-
.PHONY: run
4-
5-
buildall:
6-
go build -o bin ./days/...
7-
.PHONY: buildall
8-
9-
testall: buildall
10-
go test ./
11-
.PHONY: testall
1+
testall:
2+
go test ./...
3+
.PHONY: testall

0 commit comments

Comments
 (0)