fix: texting workflow file #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Format check on push | |
on: | |
push: | |
branches: | |
- feature/software-quality-tools | |
jobs: | |
dotnet-format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- name: Restore dependencies | |
run: dotnet restore ./csharp-minitwit/csharp-minitwit.sln | |
- name: Format | |
run: dotnet format ./csharp-minitwit/csharp-minitwit.sln --verify-no-changes --verbosity diagnostic |