fix: 🐛 fix the problem about CD about Trickers and Locking the doors #1963
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 | |
on: [push, pull_request] | |
jobs: | |
clang-format-checking: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- 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@v3 | |
- 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 |