Skip to content

Updated Strategy Base and added ATM check #149

Updated Strategy Base and added ATM check

Updated Strategy Base and added ATM check #149

Workflow file for this run

name: Formatting
on:
push:
pull_request:
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore ./Formatting.csproj
- name: Format
run: dotnet format --verify-no-changes --verbosity diagnostic