Skip to content

Commit 00cc910

Browse files
committed
ci: fix multi arch tests
1 parent 1b1aa82 commit 00cc910

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,14 @@ jobs:
4444

4545
- name: Build docker-gen
4646
run: make docker-gen
47+
env:
48+
GOARCH: ${{ matrix.goarch }}
4749

4850
- name: Check code formatting
4951
if: runner.os != 'Windows'
5052
run: make check-gofmt
5153

5254
- name: Run tests
53-
run: go test -v ./internal/...
55+
run: make test
5456
env:
5557
GOARCH: ${{ matrix.goarch }}

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ check-gofmt:
6262
fi
6363

6464
test:
65-
go test -race ./internal/...
65+
go test -v ./internal/...

0 commit comments

Comments
 (0)