Skip to content

Commit

Permalink
separate x32 and x64 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lzakharov committed Nov 17, 2023
1 parent 2cf8d45 commit c565d48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
fail-fast: false
matrix:
go-version: [1.19.x, 1.20.x, 1.21.x]
arch: [x32, x64]

services:
redis:
Expand All @@ -31,6 +32,7 @@ jobs:
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
architecture: ${{ matrix.arch }}

- name: Checkout code
uses: actions/checkout@v4
Expand Down
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ test: testdeps
go test && \
go test ./... -short -race && \
go test ./... -run=NONE -bench=. -benchmem && \
env GOOS=linux GOARCH=386 go test && \
go vet); \
done
cd internal/customvet && go build .
Expand Down

0 comments on commit c565d48

Please sign in to comment.