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;