Skip to content

Fix notification service #18

Fix notification service

Fix notification service #18

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Format
on:
push:
branches-ignore: [main]
jobs:
check-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Install csharpier
run: dotnet tool install -g csharpier
- name: Check formatting with csharpier
run: dotnet-csharpier . --check