From 87cc6cb645bbd59c8ccf2ea39d3d825b2514311c Mon Sep 17 00:00:00 2001 From: Thibault Wittemberg Date: Sun, 5 Apr 2020 18:56:10 -0400 Subject: [PATCH] ci: delete Nano artefact --- .github/workflows/ci.yml~ | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .github/workflows/ci.yml~ diff --git a/.github/workflows/ci.yml~ b/.github/workflows/ci.yml~ deleted file mode 100644 index 04dfcf8..0000000 --- a/.github/workflows/ci.yml~ +++ /dev/null @@ -1,21 +0,0 @@ -name: Tests - -on: [push] - -jobs: - iOS: - name: "iOS" - runs-on: macos-latest - steps: - - uses: actions/checkout@v2 - - name: Generate Xcode project - run: swift package generate-xcodeproj - - name: Run Unit Tests - run: set -o pipefail && xcodebuild -project Spin.Swift.xcodeproj -scheme Spin.Swift-Package -enableCodeCoverage YES -sdk iphonesimulator -destination "name=iPhone 11" test | xcpretty -c -r html --output logs/iOS.html - - name: Upload code coverage to Codecov.io - run: bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_IO_TOKEN }} - - name: Upload build artifacts to Github - uses: actions/upload-artifact@v1 - with: - name: build-logs-${{ github.run_id }} - path: logs