diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1ff65c1..b100e00 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,15 +22,27 @@ jobs: - os: ubuntu-latest goos: linux goarch: arm64 + - os: ubuntu-latest + goos: linux + goarch: 386 - os: windows-latest goos: windows goarch: amd64 + - os: windows-latest + goos: windows + goarch: arm64 + - os: windows-latest + goos: windows + goarch: 386 runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: go-version: "1.26" + - name: Test + shell: bash + run: go test ./... - name: Build shell: bash run: |