Skip to content

Fix continuous integration workflow #93

Fix continuous integration workflow

Fix continuous integration workflow #93

Workflow file for this run

name: Build and test
on:
pull_request:
env:
DOTNET_NOLOGO: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- run: dotnet --info
- name: Build solution and run all tests
run: dotnet test --verbosity normal