Skip to content

Swap to Net8 in build scripts #29

Swap to Net8 in build scripts

Swap to Net8 in build scripts #29

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- name: Setup .NET 8
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.*
- name: Install dependencies
run: |
dotnet clean -c Release && dotnet nuget locals all --clear
dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test -c Release --no-build