Skip to content

Feat/typography fixes vol3 #3879

Feat/typography fixes vol3

Feat/typography fixes vol3 #3879

name: Backend Checks (Windows)
permissions:
contents: read
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
backend-checks:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
# Setup .NET
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
# Update workloads
- name: Update .NET workloads
run: dotnet workload update
# Restore packages
- name: Restore packages
run: dotnet restore
# Check code formatting
- name: Check code formatting
run: dotnet format --verify-no-changes
# Build solution
- name: Build solution
run: dotnet build --configuration Release
# Run tests
- name: Run tests
run: dotnet test --configuration Release --no-build --verbosity normal