diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2024-04-17 13:41:37 -0600 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2024-04-17 13:41:37 -0600 |
commit | fe61fc78114515141eda343ebdeaa1480e06a6b5 (patch) | |
tree | e4c44211dcf8addf3688edc4b75527668b8474d5 /.gitea | |
parent | a231ff1d6b53bd3f669d54abac1daf9cc2be8669 (diff) |
fix codecov action source
Diffstat (limited to '.gitea')
-rw-r--r-- | .gitea/workflows/codecov.yaml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitea/workflows/codecov.yaml b/.gitea/workflows/codecov.yaml index a5a1527..153d3c1 100644 --- a/.gitea/workflows/codecov.yaml +++ b/.gitea/workflows/codecov.yaml @@ -6,6 +6,7 @@ jobs: Test-CodeCov: runs-on: ubuntu-latest steps: + - uses: actions/checkout@master - uses: swift-actions/setup-swift@v2 with: swift-version: "5.9" @@ -14,7 +15,7 @@ jobs: - name: Convert to lcov run: llvm-cov export -format="lcov" .build/debug/swift-chess-neoPackageTests.xctest/Contents/MacOS/swift-chess-neoPackageTests -instr-profile .build/debug/codecov/default.profdata > info.lcov - name: Upload coverage reports to Codecov - uses: codecov/codecov-actions@v4.0.1 + uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} slug: navanchauhan/swift-chess-neo |