diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1fa6814f..92555ca3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,6 +9,16 @@ on: - master jobs: + clang-format-check: + runs-on: ubuntu-22.04 + name: Clang-Format Check + steps: + - uses: actions/checkout@v4 + - uses: RafikFarhad/clang-format-github-action@v4 + with: + style: "file" + sources: "Source/**/*.h,Source/**/*.cpp" + build-windows: runs-on: windows-latest name: 🪟 Windows x86_64 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml deleted file mode 100644 index 42723f51..00000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: 🔦 Lint - -on: [push, pull_request] - -jobs: - clang-format-check: - runs-on: ubuntu-22.04 - name: Clang-Format Check - steps: - - uses: actions/checkout@v4 - - uses: RafikFarhad/clang-format-github-action@v4 - with: - style: "file" - sources: "Source/**/*.h,Source/**/*.cpp"