Skip to content

Bump version to 2.1.2 #10

Bump version to 2.1.2

Bump version to 2.1.2 #10

Workflow file for this run

name: Check format
on:
push:
branches: [ '*' ]
jobs:
check-format:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x.x
- name: Restore dependencies
run: dotnet restore
- name: Run dotnet format
run: dotnet format --no-restore --verify-no-changes