Skip to content

Commit 0a698da

Browse files
committed
Add macos to CI.
1 parent be89d3f commit 0a698da

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/main.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1-
on: [push]
1+
on: [ push ]
22
jobs:
33
test:
4-
runs-on: ubuntu-latest
4+
strategy:
5+
matrix:
6+
os: [ ubuntu-latest, macos-latest ]
7+
runs-on: ${{ matrix.os }}
58
steps:
6-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v3
710
- uses: ./
811
with:
9-
dfx-version: 0.8.1
12+
dfx-version: 0.13.1
1013
install-moc: true
11-
vessel-version: 0.6.2
14+
vessel-version: 0.6.5
1215
- run: |
1316
dfx --version
1417
moc --version

0 commit comments

Comments
 (0)