Merge pull request #692 from eesast/dev #2447
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 | |
on: [push, pull_request] | |
jobs: | |
clang-format-checking: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DoozyX/clang-format-lint-action@v0.15 | |
with: | |
source: '.' | |
extensions: 'c,h,C,H,cpp,hpp,cc,hh,c++,h++,cxx,hxx,i,ixx,ipp,i++' | |
clangFormatVersion: 14 | |
exclude: './players' | |
inplace: False | |
dotnet-format-checking: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x | |
- name: Check Logic | |
run: | | |
dotnet restore "./logic/logic.sln" | |
dotnet format "./logic/logic.sln" --severity error --no-restore --verify-no-changes | |
- name: Check Installer | |
run: | | |
dotnet restore "./installer/installer.sln" | |
dotnet format "./installer/installer.sln" --severity error --no-restore --verify-no-changes | |
- name: Check Launcher | |
run: | | |
dotnet restore "./launcher/launcher.sln" | |
dotnet format "./launcher/launcher.sln" --severity error --no-restore --verify-no-changes | |
- name: Check Playback | |
run: | | |
dotnet restore "./playback/playback.sln" | |
dotnet format "./playback/playback.sln" --severity error --no-restore --verify-no-changes |