Skip to content

Commit

Permalink
Fix clang-tidy check workflow (#1601)
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelroquetto authored Feb 3, 2025
1 parent 7d999ed commit 6c4ea88
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/clang-tidy-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
sudo apt-get update
sudo apt-get install -y wget lsb-release software-properties-common gnupg
wget -qO- https://apt.llvm.org/llvm-snapshot.gpg.key | sudo tee /etc/apt/trusted.gpg.d/apt.llvm.org.asc
sudo add-apt-repository -y 'deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy main'
sudo apt-get install -y clang-tidy-20
sudo add-apt-repository -y 'deb http://apt.llvm.org/noble/ llvm-toolchain-noble main'
sudo apt-get install -y clang-tidy-19
- name: Check Clang Tidy
run: |
CLANG_TIDY=clang-tidy-20 make clang-tidy
CLANG_TIDY=clang-tidy-19 make clang-tidy

0 comments on commit 6c4ea88

Please sign in to comment.