Skip to content

Doh/DoL: add tests and optimize for maintainability #52

Doh/DoL: add tests and optimize for maintainability

Doh/DoL: add tests and optimize for maintainability #52

name: Build & Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Setup .NET Core SDK 6.0.x
uses: actions/[email protected]
with:
dotnet-version: '6.0.x'
- name: Setup .NET Core SDK 3.1.x
uses: actions/[email protected]
with:
dotnet-version: '3.1.x'
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal