Skip to content

Commit 5a10fe2

Browse files
authored
Merge pull request #937 from gravitl/dev-gh-matrix
workflows/test.yml: add windows/darwin to workflow
2 parents 37ca4cf + 0e2f96b commit 5a10fe2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/test.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ jobs:
2424
tests:
2525
env:
2626
DATABASE: sqlite
27-
runs-on: ubuntu-20.04
27+
runs-on: ${{ matrix.os }}
28+
strategy:
29+
matrix:
30+
os: [macos-latest, ubuntu-latest, windows-latest]
2831
steps:
2932
- name: Checkout
3033
uses: actions/checkout@v2
@@ -38,3 +41,4 @@ jobs:
3841
env:
3942
DATABASE: sqlite
4043
CLIENT_MODE: "off"
44+

0 commit comments

Comments
 (0)