Skip to content

chore(deps): bump actions/checkout from 3 to 4 #24

chore(deps): bump actions/checkout from 3 to 4

chore(deps): bump actions/checkout from 3 to 4 #24

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
pull_request:
permissions:
contents: read
jobs:
check-format:
name: Check format
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: 5.0.x
- name: Install dotnet-format
run: dotnet tool install -g dotnet-format
- name: Run dotnet-format
run: dotnet format whitespace ./ --folder --verbosity diagnostic --verify-no-changes