Skip to content

Use GeneratedRegex

Use GeneratedRegex #13

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Clean
run: dotnet clean && dotnet nuget locals all --clear
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test -p:CollectCoverage=true -p:CoverletOutputFormat=opencover --no-build --verbosity normal
- name: Create code coverage badge
uses: simon-k/dotnet-code-coverage-badge@v1.0.0
id: code_coverage_badge
with:
label: coverage
color: brightgreen
path: tests/Toimik.UrlNormalization.Tests/coverage.opencover.xml
gist-filename: UrlNormalization-coverage.json
gist-id: e5f4b0c6225c1f67a4ad6d231dcf3ec5
gist-auth-token: ${{ secrets.GIST_AUTH_TOKEN }}