Skip to content

Commit

Permalink
make sure clang-tidy is installed before running C++ tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cmnrd committed Jun 30, 2022
1 parent 445b2d1 commit 882c00f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/cpp-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ jobs:
- name: Install Dependencies OS X
run: brew install coreutils
if: runner.os == 'macOS'
- name: Install clang-tidy on Ubuntu
run: |
sudo apt-get update
sudo apt-get install -y clang-tidy
if: matrix.os == 'ubuntu-latest'
- name: Check out specific ref of reactor-cpp
uses: actions/checkout@v2
with:
Expand Down

0 comments on commit 882c00f

Please # to comment.