Skip to content

#102 Upgrade to .NET 8 #14

#102 Upgrade to .NET 8

#102 Upgrade to .NET 8 #14

Workflow file for this run

name: CI Build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET SDK
uses: actions/[email protected]
with:
dotnet-version: |
5.0.x
6.0.x
7.0.x
8.0.x
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: |
dotnet test --no-restore --framework net5.0
dotnet test --no-restore --framework net6.0
dotnet test --no-restore --framework net7.0
dotnet test --no-restore --framework net8.0