Skip to content

Upgrade .NET to 8.0.2 #111

Upgrade .NET to 8.0.2

Upgrade .NET to 8.0.2 #111

Workflow file for this run

name: Build
on: push
jobs:
build:
runs-on: ${{ matrix.operating-system }}
strategy:
fail-fast: false
matrix:
operating-system: [ ubuntu-latest, windows-latest, macOS-latest ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore
run: dotnet restore --nologo --verbosity minimal
- name: Build
run: dotnet build --configuration Release --no-restore --nologo --verbosity minimal
- name: Test
run: dotnet test --configuration Release --no-build --nologo --verbosity minimal