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

Signed-off-by: John Sahhar <john@gravitl.com>
This commit is contained in:
John Sahhar 2022-03-21 14:10:36 -06:00
parent f8bc889ea8
commit 0e2f96b5d2

View file

@ -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"