From cfee5b47eb06ccba753f288ee8c60084481b90d3 Mon Sep 17 00:00:00 2001 From: Hayden Hargreaves Date: Sun, 26 Apr 2026 22:12:47 -0700 Subject: [PATCH] cicd: added more OS support and running tests --- .github/workflows/release.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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: |