Skip to content

add spdlog to the deps of mockimpl #2367

add spdlog to the deps of mockimpl

add spdlog to the deps of mockimpl #2367

Workflow file for this run

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