From 25f3547c08d6015d00a6bb220288238ab5b957f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cihat=20Gu=CC=88ndu=CC=88z?= Date: Mon, 15 Jun 2020 11:01:50 +0200 Subject: [PATCH] Fix tests by installing Swift-SH --- .github/workflows/main.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3f545b6..1cc01bd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -89,16 +89,24 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Install Swift-SH via Mint + run: | + git clone https://github.com/yonaskolb/Mint.git + cd Mint + sudo swift run mint install mxcl/swift-sh + - name: Run tests run: swift test -v - test-macos: runs-on: macos-latest steps: - uses: actions/checkout@v2 + - name: Install Swift-SH + run: brew install swift-sh + - name: Run tests run: swift test -v --enable-code-coverage