Skip to content

[CI] Update verify-build workflow for .NET 7. #77

[CI] Update verify-build workflow for .NET 7.

[CI] Update verify-build workflow for .NET 7. #77

Workflow file for this run

name: verify-build
on:
push:
branches: [ main, next, mp/workflow_tests ]
pull_request:
branches: [ main, next ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal