We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
compatibility.yml
1 parent 6c8c705 commit 2a90f54Copy full SHA for 2a90f54
.github/workflows/compatibility.yml
@@ -2,22 +2,23 @@ name: Check compatibility
2
on:
3
pull_request:
4
push:
5
- branches: [master]
+ branches: [main]
6
jobs:
7
test:
8
name: Check source code compatibility
9
runs-on: Ubuntu-18.04
10
steps:
11
- name: Checkout
12
- uses: actions/checkout@master
+ uses: actions/checkout@v2
13
with:
14
fetch-depth: 1
15
- name: Run Test
16
run: |
17
+ set -eux
18
git clone https://github.com/kylef/swiftenv.git ~/.swiftenv
19
export SWIFTENV_ROOT="$HOME/.swiftenv"
20
export PATH="$SWIFTENV_ROOT/bin:$PATH"
21
eval "$(swiftenv init -)"
22
make bootstrap
23
cd Example
- swift build --triple wasm32-unknonw-wasi
24
+ swift build --triple wasm32-unknown-wasi
0 commit comments