Skip to content

Commit 267146d

Browse files
Setup matrix
1 parent f255b5e commit 267146d

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

Diff for: .github/workflows/test.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@ on: [push, pull_request]
33
jobs:
44
test:
55
name: Build and Test
6-
runs-on: macOS-10.15
6+
strategy:
7+
matrix:
8+
os: [macOS-10.15]
9+
include:
10+
- os: macOS-10.15
11+
toolchain: https://github.com/swiftwasm/swift/releases/download/swift-wasm-DEVELOPMENT-SNAPSHOT-2020-03-08-a/swift-wasm-DEVELOPMENT-SNAPSHOT-2020-03-08-a-osx.tar.gz
12+
runs-on: ${{ matrix.os }}
713
steps:
814
- name: Checkout
915
uses: actions/checkout@master
@@ -19,4 +25,4 @@ jobs:
1925
make bootstrap
2026
make test
2127
env:
22-
TOOLCHAIN_DOWNLOAD: https://github.com/swiftwasm/swift/releases/download/swift-wasm-DEVELOPMENT-SNAPSHOT-2020-03-08-a/swift-wasm-DEVELOPMENT-SNAPSHOT-2020-03-08-a-osx.tar.gz
28+
TOOLCHAIN_DOWNLOAD: ${{ matrix.toolchain }}

0 commit comments

Comments
 (0)