From 8fb4dce68a5286727c2dd0b3d1beb7d4ba8d98dd Mon Sep 17 00:00:00 2001 From: khanhtc1202 Date: Wed, 2 Apr 2025 20:42:56 +0900 Subject: [PATCH] Add the GOOS to CI test Signed-off-by: khanhtc1202 --- .github/workflows/go.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index b79d1fa09..515d9bac0 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' }}