Working #1
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: Bom.Squad | |
runs-on: windows-latest | |
steps: | |
- name: Clone | |
uses: actions/checkout@v3 | |
- 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 --no-restore --configuration Release --verbosity normal | |
- name: Test | |
run: | | |
dotnet test --no-build --verbosity normal --configuration Release --collect:"XPlat Code Coverage" --settings Test/Test.runsettings --logger "trx;LogFileName=TestResults.xml" | |
Out-File -InputObject "TEST_EXIT_CODE=$LASTEXITCODE" -FilePath $env:GITHUB_ENV -Append -Encoding UTF8 | |
Copy-Item Test/TestResults/*/coverage.info Test/TestResults -ErrorAction Continue | |
exit 0 | |
- name: Upload test report | |
run: testspace Test/TestResults/TestResults.xml | |
- name: Upload coverage | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: Test/TestResults/coverage.info | |
- name: Stop if tests failed | |
run: exit $env:TEST_EXIT_CODE | |
- name: Pack | |
run: dotnet pack ${{ env.ProjectName }} --no-build --configuration Release --verbosity normal | |
- name: Upload package | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ env.ProjectName }}.nupkg | |
path: ${{ env.ProjectName }}/bin/Release/*.*nupkg |