Skip to content
This repository has been archived by the owner on Jun 29, 2024. It is now read-only.

Commit

Permalink
Comment out clang-tidy tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Gashmob committed Jul 19, 2023
1 parent 2d4ecc8 commit e3c9e70
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,19 +49,19 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
files: ${{github.workspace}}/coverage.info

clang-tidy:
continue-on-error: true # It not really matter if this job failed
needs:
- tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_EXPORT_COMPILE_COMMANDS=ON

- name: Run clang-tidy
run: clang-tidy -p ${{github.workspace}}/build/ src/**/*.{cpp,hpp,h} tests/**/*.cpp
# clang-tidy:
# continue-on-error: true # It not really matter if this job failed
# needs:
# - tests
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
#
# - name: Configure CMake
# run: cmake -B ${{github.workspace}}/build -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
#
# - name: Run clang-tidy
# run: clang-tidy -p ${{github.workspace}}/build/ src/**/*.{cpp,hpp,h} tests/**/*.cpp

build:
strategy:
Expand Down

0 comments on commit e3c9e70

Please sign in to comment.