Skip to content

Upgrade .NET to 8.0.7 #240

Upgrade .NET to 8.0.7

Upgrade .NET to 8.0.7 #240

Workflow file for this run

name: .NET Core (Standalone build)
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-standalone:
if: "!contains(github.event.commits[0].message, '[skip ci]')"
strategy:
matrix:
os: [ubuntu-22.04, windows-2022]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0'
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal