Skip to content

Migrate to .NET 8 LTS #18

Migrate to .NET 8 LTS

Migrate to .NET 8 LTS #18

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
- run: dotnet restore .
- run: dotnet build --configuration Debug .\GdbMi.sln
- run: dotnet build --configuration Release .\GdbMi.sln
- run: dotnet test --configuration Release .\GdbMi.sln