Merge pull request #26 from marthijn/dependabot/nuget/xunit-2.9.2 #99
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: build | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '*' | |
env: | |
DOTNET_NOLOGO: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
dotnet-version: [ '8.0.x' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ matrix.dotnet-version }} | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --configuration Release | |
- name: Test with dotnet | |
run: dotnet test --configuration Release | |
/p:CollectCoverage=true | |
/p:CoverletOutputFormat="\"cobertura,json\"" | |
/p:CoverletOutput=coverage/ | |
/p:IncludeTestAssembly=false | |
- name: Upload dotnet test results | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
files: ${{ github.workspace }}/src/Sidio.Sitemap.Core.Tests/coverage/coverage.net8.0.cobertura.xml ${{ github.workspace }}/src/Sidio.Sitemap.Core.Tests/coverage/coverage.net481.cobertura.xml | |
format: cobertura | |
if: ${{ always() }} |