Skip to content

Setup of alpha release. #44

Setup of alpha release.

Setup of alpha release. #44

Workflow file for this run

name: Build & Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET 8.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.100
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Run unit tests
run: dotnet test --no-build --configuration Release