From 311bb5b6e76947379f9072fac90cfed52aca1ab1 Mon Sep 17 00:00:00 2001 From: leogdion Date: Fri, 31 Jan 2020 12:55:30 -0500 Subject: [PATCH] fixing whitespace --- .github/workflows/swift.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index 743b4e0..e5f9633 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -7,7 +7,7 @@ jobs: runs-on: macos-latest if: "!contains(github.event.head_commit.message, 'ci skip')" - + steps: - uses: actions/checkout@v2 - name: Prepare Build @@ -15,10 +15,10 @@ jobs: - name: Build run: swift build -v - name: Lint - run: swiftformat --lint . && swiftlint + run: swiftformat --lint . && swiftlint - name: Run tests run: swift test -v --enable-code-coverage - - name: Prepare Code Coverage + - name: Prepare Code Coverage run: xcrun llvm-cov export -format="lcov" .build/debug/swiftverPackageTests.xctest/Contents/MacOS/swiftverPackageTests -instr-profile .build/debug/codecov/default.profdata > info.lcov - name: Upload to CodeCov.io run: bash <(curl https://codecov.io/bash) -F github -n ${{ github.sha }}