Skip to content

feature: Update to .NET 8.0 (#26) #12

feature: Update to .NET 8.0 (#26)

feature: Update to .NET 8.0 (#26) #12

Workflow file for this run

name: .NET Build/Test
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['8.0.x']
steps:
- uses : actions/checkout@v2
- name: Setup .NET SDK ${{matrix.dotnet-version}}
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{matrix.dotnet-version}}
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal