Skip to content

fix typo

fix typo #13

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- "**"
tags-ignore:
- "v*"
pull_request:
branches:
- "**"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: "9.0.x"
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Run tests
run: dotnet test --no-build --no-restore --configuration Release --verbosity normal --collect:"XPlat Code Coverage" --results-directory ./TestResults
- name: Upload coverage report
if: github.ref == 'refs/heads/master'
uses: coveralls/github-action@v2
with:
format: "cobertura"
file: "TestResults/**/coverage.cobertura.xml"