Browse Source

workflows/test.yml: add windows/darwin to workflow

Signed-off-by: John Sahhar <[email protected]>
John Sahhar 3 years ago
parent
commit
0e2f96b5d2
1 changed files with 5 additions and 1 deletions
  1. 5 1
      .github/workflows/test.yml

+ 5 - 1
.github/workflows/test.yml

@@ -24,7 +24,10 @@ jobs:
   tests:
     env:
       DATABASE: sqlite
-    runs-on: ubuntu-20.04
+    runs-on: ${{ matrix.os }}
+    strategy:
+      matrix:
+        os: [macos-latest, ubuntu-latest, windows-latest]
     steps:
       - name: Checkout
         uses: actions/checkout@v2
@@ -38,3 +41,4 @@ jobs:
         env:
           DATABASE: sqlite
           CLIENT_MODE: "off"
+