From fa3e54236d9a5acdf3f06ecabd5de63a5aeea0c4 Mon Sep 17 00:00:00 2001 From: hagen1778 Date: Fri, 22 Dec 2023 15:52:25 +0100 Subject: [PATCH] github-actions: add test for 386 arch --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a75eb29..e53c8e9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,7 +17,7 @@ jobs: - name: Test run: | go test -v ./... -coverprofile=coverage.txt -covermode=atomic - GOARCH=386 go test -coverprofile=coverage.txt -covermode=atomic ./lib/... ./app/... + GOARCH=386 go test ./... -coverprofile=coverage.txt -covermode=atomic go test -v ./... -race - name: Build run: |