try to fix open call #108
This file contains hidden or 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: test-linux | |
on: push | |
jobs: | |
test-linux: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Build | |
run: |- | |
set -euxo pipefail | |
swift build | |
- name: Run tests | |
run: |- | |
set -euxo pipefail | |
swift test |