From 0fef6497f78e2e674f5b6325167458093a15677b Mon Sep 17 00:00:00 2001 From: Uditha Atukorala Date: Thu, 21 Nov 2024 23:11:19 +0000 Subject: [PATCH] wip: fix ci lint --- .github/workflows/ci.yaml | 1 + src/svc/principals.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f11aa88..0fea6e7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -29,6 +29,7 @@ jobs: apt update apt install -y --no-install-recommends \ clang cmake libclang-rt-dev make ninja-build \ + git ca-certificates \ libprotobuf-dev libprotoc-dev protobuf-compiler \ libpq-dev postgresql-client \ lcov llvm diff --git a/src/svc/principals.h b/src/svc/principals.h index 9929e21..4391062 100644 --- a/src/svc/principals.h +++ b/src/svc/principals.h @@ -12,7 +12,7 @@ template concept has_mutable_principal = requires(T t) { { t.mutable_principal() } -> std::same_as; }; -} +} // namespace concepts using namespace ruek::api::v1::Principals;