Skip to content

Merge pull request #30 from eulynx-live/SCI-IO #145

Merge pull request #30 from eulynx-live/SCI-IO

Merge pull request #30 from eulynx-live/SCI-IO #145

Workflow file for this run

name: dotnet test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore src/FieldElementSubsystems.Test
- name: Test
run: dotnet test --no-restore src/FieldElementSubsystems.Test /p:CollectCoverage=true /p:Threshold=\"25,22,27\" /p:ThresholdType=\"line,branch,method\" /p:ThresholdStat=total /p:Exclude=\"[*]EulynxLive.Messages.*\"