File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,13 @@ on: [push, pull_request]
3
3
jobs :
4
4
test :
5
5
name : Build and Test
6
- runs-on : macOS-10.15
6
+ strategy :
7
+ matrix :
8
+ os : [macOS-10.15, ubuntu-18.04]
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 }}
7
13
steps :
8
14
- name : Checkout
9
15
uses : actions/checkout@master
19
25
make bootstrap
20
26
make test
21
27
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 }}
You can’t perform that action at this time.
0 commit comments