add spdlog to the deps of mockimpl #2367
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
push: | |
branches: [ "main", "0.*" ] | |
pull_request: | |
branches: [ "main", "0.*" ] | |
jobs: | |
clang-tidy-check: | |
name: Lint | |
runs-on: ubuntu-latest | |
# runs-on: self-hosted | |
container: | |
image: vsaglib/vsag:ci-x86 | |
concurrency: | |
group: lint-${{ github.event.pull_request.number }} | |
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install clang-tidy | |
run: sudo apt install clang-tidy-15 -y && sudo ln -s /usr/bin/clang-tidy-15 /usr/bin/clang-tidy | |
- name: Run lint | |
run: export CMAKE_GENERATOR="Ninja" && make debug && make lint |