Skip to content

Merge pull request #19 from marthijn/dependabot/nuget/Sidio.Sitemap.A… #57

Merge pull request #19 from marthijn/dependabot/nuget/Sidio.Sitemap.A…

Merge pull request #19 from marthijn/dependabot/nuget/Sidio.Sitemap.A… #57

Workflow file for this run

name: build
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- '*'
env:
DOTNET_NOLOGO: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup dotnet 8.x
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
- name: Setup dotnet 9.x
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.x
- 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.Blazor.Tests/coverage/coverage.net8.0.cobertura.xml ${{ github.workspace }}/src/Sidio.Sitemap.Blazor.Tests/coverage/coverage.net9.0.cobertura.xml
format: cobertura
if: ${{ always() }}