diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index dc98af9..5202140 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -4,7 +4,13 @@ permissions: contents: read jobs: test: - runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] + arch: [amd64, arm64] + go-version: [1.21.3] + runs-on: ${{ matrix.os }} steps: - name: Checkout repository uses: actions/checkout@v2