Skip to content

Commit

Permalink
Test more GOOS/GOARCH for buildability
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Koch <[email protected]>
  • Loading branch information
hugelgupf committed Jan 14, 2024
1 parent 73e6321 commit 58d9dce
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,20 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.20', '1.21.x' ]
go-version: [ '1.21.x' ]
goos: ['darwin', 'freebsd', 'linux']
goarch: ['arm64', 'amd64']
include:
- go-version: 1.21.x
goos: linux
goarch: riscv64
- go-version: 1.21.x
goos: linux
goarch: arm

env:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 58d9dce

Please sign in to comment.