Merge pull request #205 from pyrocumulus/develop #438
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Codecov | |
on: | |
push: | |
branches-ignore: | |
- gh-pages | |
paths-ignore: | |
- 'docfx/**' | |
jobs: | |
test_and_upload_coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET Core | |
uses: actions/[email protected] | |
with: | |
dotnet-version: 3.1.100 | |
- name: Test with dotnet | |
run: dotnet test --configuration Release /p:CollectCoverage=true /p:CoverletOutputFormat=opencover | |
- name: Code coverage | |
uses: codecov/codecov-action@v4 | |