Skip to content

Update main readme

Update main readme #47

Workflow file for this run

name: Build
on:
push:
branches:
- dev
- main
tags:
- 'v*.*.*'
paths-ignore:
- '**/*.md'
- '**/*.png'
- '**/*.txt'
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: |
6.0.x
7.0.x
8.0.x
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration ${{ env.CONFIGURATION }}