From 55f2f74a62c14dd97fa4e1582262b589e7bd58de Mon Sep 17 00:00:00 2001 From: Mykola Kobets Date: Thu, 17 Oct 2024 12:14:10 +0300 Subject: [PATCH] [workflows] Fix CI build Signed-off-by: Mykola Kobets --- .github/workflows/build_test.yaml | 2 +- .github/workflows/check_format.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_test.yaml b/.github/workflows/build_test.yaml index e2ff8ace..7fee3630 100644 --- a/.github/workflows/build_test.yaml +++ b/.github/workflows/build_test.yaml @@ -22,7 +22,7 @@ jobs: - name: Prepare run: | sudo apt install lcov libsofthsm2 libsystemd-dev cppcheck -y - pip install conan + python -m pip install conan - name: Build and test run: | diff --git a/.github/workflows/check_format.yaml b/.github/workflows/check_format.yaml index 5da2cbde..f86d7070 100644 --- a/.github/workflows/check_format.yaml +++ b/.github/workflows/check_format.yaml @@ -24,6 +24,6 @@ jobs: - name: Run cmake-format style check run: | python -m pip install --upgrade pip - pip install cmake_format + python -m pip install cmake_format find . \( \( -not -path '*/build/*' \) -name '*.cmake' -or -name 'CMakeLists.txt' \) \ -exec cmake-format --check {} +;