Skip to content

Make ValuesDiffer overridable. #186

Make ValuesDiffer overridable.

Make ValuesDiffer overridable. #186

Workflow file for this run

name: Test
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: [ '8.0.x', '7.0.x', '6.0.x' ]
configuration: [Release]
steps:
- name: Checkout
uses: actions/checkout@v3
# Install the .NET workload
- name: Install .NET ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Restore packages
run: dotnet restore Euonia.sln
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal