Skip to content

Commit 8862ddd

Browse files
committed
Employ a matrix strategy for setting up the CLI
1 parent 0700ca1 commit 8862ddd

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/test.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,17 @@ on: [ push ]
55
jobs:
66
test:
77
name: Test
8-
runs-on: ubuntu-latest
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
matrix:
11+
os: [macos-latest, windows-latest, windows-2016, ubuntu-18.04]
912
steps:
1013
- name: Checkout
1114
uses: actions/checkout@v2
15+
1216
- name: Setup gh
1317
uses: ./
1418
with:
1519
version: 1.1.0
20+
1621
- run: gh --version

0 commit comments

Comments
 (0)