Skip to content

refactor: Various refactors #141

refactor: Various refactors

refactor: Various refactors #141

Workflow file for this run

name: .NET Build
on:
- push
- pull_request
jobs:
build:
strategy:
matrix:
configuration: [Debug, Release]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # avoid shallow clone so nbgv can do its work.
submodules: 'recursive'
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0
dotnet-quality: preview
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore -c ${{ matrix.configuration }}
- name: Test
run: dotnet test --no-build --verbosity normal