Skip to content

Improve tests

Improve tests #22

Workflow file for this run

name: Build
on:
push:
branches:
- main
- release
tags:
- 'v*.*.*'
paths-ignore:
- '**/*.md'
env:
CONFIGURATION: 'Release'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.x'
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration ${{ env.CONFIGURATION }}