From 4a1c625bee0d7d80de987f45d85355bbd3f857df Mon Sep 17 00:00:00 2001 From: get-me-power Date: Fri, 3 Feb 2023 04:08:16 +0900 Subject: [PATCH] chore: add macos, linux in ci --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a502e80..71d7510a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,10 @@ on: jobs: build: - runs-on: windows-latest + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@main - name: Setup .NET