From 6ce45cc834bb2ac2ab0d44f9291bdc5f749800a5 Mon Sep 17 00:00:00 2001 From: LordMathis Date: Sat, 9 Mar 2024 23:21:36 +0100 Subject: [PATCH] Remove gh actions lint --- .github/workflows/lint.yaml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/lint.yaml diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml deleted file mode 100644 index a56e263..0000000 --- a/.github/workflows/lint.yaml +++ /dev/null @@ -1,23 +0,0 @@ -name: cpp-linter - -on: - push: - branches: - - main - -jobs: - cpp-linter: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: cpp-linter/cpp-linter-action@v2 - id: linter - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - thread-comments: false - step-summary: true - extensions: h,c,hpp,cpp,cuh,cu - - name: Fail fast?! - if: steps.linter.outputs.checks-failed > 0 - run: exit 1