From d8ffb3b6cc6545bce8acb3178454ef1e4926daf8 Mon Sep 17 00:00:00 2001 From: Alexey Michurin Date: Thu, 13 Jun 2024 19:14:59 +0300 Subject: [PATCH] CI: build on true ms windows --- .github/workflows/ci.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 47e46b2..1fabded 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -39,6 +39,15 @@ jobs: GOOS: windows GOARCH: amd64 - run: "file pplog.exe" + windows: + runs-on: windows-latest # https://github.com/actions/runner-images/blob/main/images/windows/Windows2022-Readme.md + timeout-minutes: 10 + name: "Build on MS Windows" + steps: + - uses: actions/checkout@v4 + - run: "go version" + - run: "go build ./cmd/..." + - run: "dir" test: runs-on: ubuntu-latest timeout-minutes: 10