You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2020/12/27 13:52:18 UTC

[airflow-cancel-workflow-runs] 02/44: Add matrix

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow-cancel-workflow-runs.git

commit 8342de2ac3b7a70154b024b6a99756d76510165a
Author: Jason T. Greene <ja...@redhat.com>
AuthorDate: Tue Feb 4 00:38:16 2020 -0600

    Add matrix
---
 .github/workflows/test.yml | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index afdd881..61c2baf 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -12,7 +12,14 @@ jobs:
         npm install
         npm run all
   test: # make sure the action works on a clean machine without building
-    runs-on: ubuntu-latest
+    name: Test on ${{ matrix.os }}
+
+    strategy:
+      matrix:
+        os: [ubuntu-latest, windows-latest, macOS-latest]
+
+    runs-on: ${{ matrix.os }}
+    
     steps:
     - uses: actions/checkout@v1
     - uses: ./