Skip to content

Create dependabot.yml #17

Create dependabot.yml

Create dependabot.yml #17

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
- uses: NuGet/setup-nuget@v1
- uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget-
- run: dotnet restore .
- run: dotnet build --configuration Debug .\GdbMi.sln
- run: dotnet build --configuration Release .\GdbMi.sln
- run: dotnet test --configuration Release .\GdbMi.sln