From 8afa5968a254f634efc3abb27766a26ec625db9a Mon Sep 17 00:00:00 2001 From: Ilya Sytchev Date: Thu, 20 Jan 2022 17:44:16 -0500 Subject: [PATCH] Run GitHub Actions on Ubuntu, Windows, and macOS --- .github/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 623c4317..d0d33d6f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,7 +6,10 @@ on: push jobs: build: - runs-on: ubuntu-20.04 + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: ['ubuntu-20.04', 'windows-latest', 'macOS-latest'] steps: - name: Checkout Forest code from GitHub repo uses: actions/checkout@v2