Merge pull request #114 from hfutrell/0.16.1-release #97
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: WebAssembly build | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: BezierKit WASM support | |
runs-on: ubuntu-latest | |
container: ghcr.io/swiftwasm/carton:0.16.0 | |
steps: | |
- uses: actions/checkout@v2 | |
# Carton is not able to find our tests if LinuxMain.swift file is defined | |
- name: Remove LinuxMain.swift file | |
run: rm BezierKit/LinuxMain.swift | |
- name: Test | |
run: carton test |