diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 011cf2040..48c21fac2 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -39,6 +39,10 @@ jobs: strategy: matrix: go_version: ${{ fromJSON(needs.supportedVersions.outputs.supported_versions) }} + os: + - windows + - darwin + - linux steps: - name: Checkout code @@ -60,6 +64,7 @@ jobs: run: make check_license test env: CI: true + GOOS: ${{ matrix.os }} - name: Run style and unused if: ${{ matrix.go_version == '1.22' }}