Skip to content

fix: change Dependabot auto-merge strategy from merge to squash #93

fix: change Dependabot auto-merge strategy from merge to squash

fix: change Dependabot auto-merge strategy from merge to squash #93

Workflow file for this run

name: .NET Build and Test
on:
workflow_dispatch:
push:
paths:
- '**.csproj'
- '**.cs'
- '**.razor'
- '**.yaml'
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
10.x
9.x
8.x
cache: true
cache-dependency-path: '**/packages.lock.json'
- name: Restore dependencies
run: dotnet restore --locked-mode
- name: Build
run: dotnet build --no-restore
- name: Run tests
run: dotnet test --no-build --verbosity normal