Skip to content

Adopt the standard C# repository layout #1

Adopt the standard C# repository layout

Adopt the standard C# repository layout #1

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: windows-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v5
- uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- run: dotnet build rbmanager.sln
# The hosted image has VS with MSVC, so the RequiresVS and Publish
# suites run for real instead of skipping.
- run: dotnet test rbmanager.sln --no-build