.NET #27
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: .NET | |
on: | |
push: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build: | |
env: | |
ProjectName: ThrottleDebounce | |
runs-on: windows-latest | |
steps: | |
- name: Clone | |
uses: actions/checkout@v4 | |
- name: Initialize test reporting | |
uses: testspace-com/setup-testspace@v1 | |
with: | |
domain: ${{github.repository_owner}} | |
- name: Restore | |
run: dotnet restore --verbosity normal | |
- name: Build | |
run: dotnet build ${{ env.ProjectName }} --no-restore --configuration Release | |
- name: Pack | |
run: dotnet pack ${{ env.ProjectName }} --no-build --configuration Release | |
- name: Test | |
run: | | |
dotnet test Tests --configuration Release --collect:"XPlat Code Coverage" --settings Tests/coverlet.runsettings --logger "trx;LogFileName=TestResults.xml" --verbosity normal | |
Out-File -InputObject "TEST_EXIT_CODE=$LASTEXITCODE" -FilePath $env:GITHUB_ENV -Append -Encoding UTF8 | |
Copy-Item Tests/TestResults/*/coverage.info Tests/TestResults -ErrorAction Continue | |
exit 0 | |
- name: Upload test report | |
run: testspace Tests/TestResults/*.xml | |
- name: Upload coverage | |
uses: coverallsapp/github-action@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
file: Tests/TestResults/coverage.info | |
format: lcov | |
- name: Stop if tests failed | |
run: exit $env:TEST_EXIT_CODE | |
- name: Upload package | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ env.ProjectName }}.nupkg | |
path: ${{ env.ProjectName }}/bin/Release/*.*nupkg | |
if-no-files-found: error |