Skip to content

migrate from sln to slnx (#88) #22

migrate from sln to slnx (#88)

migrate from sln to slnx (#88) #22

Workflow file for this run

name: Format
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install .NET
uses: actions/setup-dotnet@v4
# Verifies the code matches .editorconfig (whitespace + code style + analyzers).
# Fails the build if anything is out of format. To fix locally, run:
# dotnet format
- name: Verify formatting
run: dotnet format --verify-no-changes