From 6854c930fedfcec6a48d20a3a345e6934523c566 Mon Sep 17 00:00:00 2001 From: Webber Date: Wed, 29 Jan 2020 20:42:50 +0100 Subject: [PATCH] Add workflow strategy for multiple versions --- .github/workflows/main.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 73a577d..541aa8d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,11 +10,21 @@ jobs: requestActivation: name: Request activation ✔ runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + unityVersion: + - 2018.4.15f1 + - 2019.2.11f1 + - 2019.2.14f1 + - 2019.2.17f1 steps: # Checkout repository (required to test local actions) - name: Checkout repository - uses: actions/checkout@v1 + uses: actions/checkout@v2 # Activate Unity - name: Activate Unity uses: ./ + with: + unityVersion: ${{ matrix.unityVersion }}