Code coverage (#11)

* code coverage

* enable codecov for GA
This commit is contained in:
Adam Hathcock
2024-07-04 09:43:16 +01:00
committed by GitHub
parent a0b723b2cb
commit f26f79c3c8
13 changed files with 47 additions and 30 deletions
+6
View File
@@ -24,3 +24,9 @@ jobs:
- name: 🔫 Build All
run: ./build.sh
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v4.2.0
with:
files: tests/**/coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}
+6
View File
@@ -28,6 +28,12 @@ jobs:
- name: 🔫 Build and Pack
run: ./build.sh pack
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v4.2.0
with:
files: tests/**/coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}
- name: Push to nuget.org
run: dotnet nuget push output/*.nupkg --source "https://api.nuget.org/v3/index.json" --api-key ${{secrets.CONNECTORS_NUGET_TOKEN }} --skip-duplicate