From 4770da2beb7c5e924f79b17bd2c9b5f0080f85a2 Mon Sep 17 00:00:00 2001 From: hagen1778 Date: Fri, 22 Dec 2023 15:50:59 +0100 Subject: [PATCH] github-actions: add test for 386 arch --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a5f3580..a75eb29 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,6 +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/... go test -v ./... -race - name: Build run: |