github.com/puzpuzpuz/xsync/v2@v2.5.2-0.20231021165734-92b8269e19a9/.github/workflows/build-32-bit.yml (about) 1 name: build-32-bit 2 on: [push] 3 4 jobs: 5 test: 6 runs-on: ubuntu-latest 7 strategy: 8 matrix: 9 go-version: [1.21.x] 10 name: Build with Go ${{ matrix.go-version }} 32-bit 11 steps: 12 - uses: actions/checkout@v3 13 14 - name: Install Go 15 uses: actions/setup-go@v3 16 with: 17 go-version: ${{ matrix.go-version }} 18 19 - name: Run tests 20 run: GOARCH=386 go test -v ./...