Target .NET 8 in Github Actions, hopefully

This commit is contained in:
Tony Bark 2023-08-12 17:14:09 -04:00
parent a228081732
commit 5f6e6c1935
2 changed files with 4 additions and 2 deletions

View file

@ -14,7 +14,7 @@ jobs:
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
strategy:
matrix:
dotnet: ["6.0.x"]
dotnet: ["8.0.x"]
platforms: ["ubuntu-latest", "windows-latest", "macos-latest"]
steps:
- uses: actions/checkout@v2
@ -22,6 +22,7 @@ jobs:
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet }}
dotnet-quality: 'preview'
- name: Install dependencies
run: dotnet restore
- name: Build

View file

@ -14,7 +14,8 @@ jobs:
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: "6.0.x"
dotnet-version: "8.0.x"
dotnet-quality: 'preview'
- name: Install dependencies
run: dotnet restore
- name: Package