Skip to content

Removed overseen method from GirafRest.test #904

Removed overseen method from GirafRest.test

Removed overseen method from GirafRest.test #904

Workflow file for this run

name: Unit Test
on:
push:
jobs:
build:
name: Unit Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.100-rc.1.23463.5'
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Tests
run: dotnet test ./GirafRest.Test/ /p:CollectCoverage=true /p:CoverletOutputFormat=lcov /p:ExcludeByFile=\"**/Migrations/**/*\"
- name: Upload coverage to Codecov
uses: codecov/[email protected]