Skip to content

Add .NET 6 and .NET 8 targets #2

Add .NET 6 and .NET 8 targets

Add .NET 6 and .NET 8 targets #2

Workflow file for this run

name: .NET build & test
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./Sources
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Test
run: dotnet test -c debug
- name: Build
run: dotnet build -c release