Skip to content

feat: show parsing errors in stderr #58

feat: show parsing errors in stderr

feat: show parsing errors in stderr #58

Workflow file for this run

name: Continuous Integration
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v2
with:
dotnet-version: |
6.x
8.x
- name: Install dependencies
run: dotnet restore ./src/Criteo.OpenApi.Comparator.UTest
- name: Build
run: dotnet build ./src/Criteo.OpenApi.Comparator.UTest --configuration Release --no-restore
- name: Test
run: dotnet test ./src/Criteo.OpenApi.Comparator.UTest --no-restore --verbosity minimal