Skip to content

project migrations

project migrations #2

Workflow file for this run

name: dotnet-format
on:
pull_request:
branches: [main]
permissions:
contents: read
env:
DOTNET_VERSION: '8.0.100' # The .NET SDK version to use
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Format
run: dotnet format --verbosity detailed --verify-no-changes