diff --git a/.github/workflows/yuval.yml b/.github/workflows/yuval.yml index 8b13789..c2f1054 100644 --- a/.github/workflows/yuval.yml +++ b/.github/workflows/yuval.yml @@ -1 +1,23 @@ +name: iOS Tests with Coverage +on: + push: + branches: + - integrate_codecov + +jobs: + build: + runs-on: macos-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Build and Test + run: | + swift build + swift test --enable-code-coverage + + # - name: Generate Coverage Report + # run: | + # xcrun xccov view --report /Logs/Test/*.xccovreport > coverage.txt