From fcad79312fb3a375c4ce42e1863cde4a40ccec74 Mon Sep 17 00:00:00 2001 From: Jesse van den Kieboom Date: Mon, 17 Jun 2024 07:55:46 +0200 Subject: [PATCH] Add windows and macos targets for github actions --- .github/workflows/go.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 27e6e7d..05fe94d 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -4,6 +4,7 @@ name: Go on: + workflow_dispatch: push: branches: ["main"] pull_request: @@ -11,7 +12,10 @@ on: jobs: build: - runs-on: ubuntu-latest + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4