From 83e6d042d7658c8adf58bc5c23519197677bbcb5 Mon Sep 17 00:00:00 2001 From: Paul Merlin Date: Sun, 14 Jun 2020 12:22:21 +0200 Subject: [PATCH] Run CI on linux, macos and windows --- .github/workflows/dev.yml | 5 ++++- .github/workflows/prod.yml | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index f72f4c3..ebb4b6a 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -6,7 +6,10 @@ on: jobs: check: - runs-on: ubuntu-latest + strategy: + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] + runs-on: ${{ matrix.os }} steps: - name: Checkout sources uses: actions/checkout@v2 diff --git a/.github/workflows/prod.yml b/.github/workflows/prod.yml index 2262923..089cd7a 100644 --- a/.github/workflows/prod.yml +++ b/.github/workflows/prod.yml @@ -9,7 +9,10 @@ on: jobs: check: - runs-on: ubuntu-latest + strategy: + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] + runs-on: ${{ matrix.os }} steps: - name: Checkout sources uses: actions/checkout@v2