From 7f9cc30c60a79cb1bf20642b06acfe835fd73a9a Mon Sep 17 00:00:00 2001
From: khai96_ <hvksmr1996@gmail.com>
Date: Fri, 8 May 2020 17:04:35 +0700
Subject: [PATCH] Cross-Platform tests for explicit inputs

---
 .github/workflows/test.yaml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml
index 6797c95..a0777bf 100644
--- a/.github/workflows/test.yaml
+++ b/.github/workflows/test.yaml
@@ -37,13 +37,17 @@ jobs:
   test_explicit_inputs:
     name: Test with explicit inputs
 
-    runs-on: ubuntu-latest
+    runs-on: ${{ matrix.os }}
 
     strategy:
       fail-fast: false
       matrix:
         pnpm:
           - 4.11.1
+        os:
+          - ubuntu-latest
+          - macos-latest
+          - windows-latest
 
     steps:
       - uses: actions/checkout@v2