Skip to content

multiple fixes and improvements #81

multiple fixes and improvements

multiple fixes and improvements #81

Workflow file for this run

name: test
on:
pull_request:
branches: [master]
jobs:
test_build:
name: Test build on ${{ matrix.os }} .NET 8.0
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0
- uses: actions/checkout@v4
- name: Restore packages
run: dotnet restore ProjBobcat/ProjBobcat.sln
- name: Build Test
run: dotnet build ProjBobcat/ProjBobcat.sln -c Release --no-restore