Skip to content

chore: upgrade solution file to net8.0 and c# 12 #16

chore: upgrade solution file to net8.0 and c# 12

chore: upgrade solution file to net8.0 and c# 12 #16

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Test on ${{ matrix.os }} .NET 8.0
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/[email protected]
with:
dotnet-version: 8.0
- uses: actions/checkout@v4
- name: Restore packages
run: dotnet restore
- name: Build Test
run: dotnet build -c Release -f net8.0 --no-restore