From 44a567fc083a5316ea2b1d4ce9347f9fb4f60f1d Mon Sep 17 00:00:00 2001 From: Masaharu Tashiro Date: Fri, 11 Oct 2024 16:24:46 +0900 Subject: [PATCH] ci: run test workflow on multi platforms --- .github/workflows/test.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index fb812e9..00b8ef6 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -3,7 +3,10 @@ on: pull_request jobs: build: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] steps: - uses: actions/checkout@v3