From 803468f3f61e35c8a7984ca2209865d006c7b2ff Mon Sep 17 00:00:00 2001 From: Timofey Khoruzhii Date: Tue, 9 May 2023 01:25:08 +0300 Subject: [PATCH] fix CI --- .gitea/workflows/check-format.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/check-format.yml b/.gitea/workflows/check-format.yml index faab477..2418721 100644 --- a/.gitea/workflows/check-format.yml +++ b/.gitea/workflows/check-format.yml @@ -17,7 +17,10 @@ jobs: uses: actions/checkout@v2 - name: Install clang-format - run: apt-get install -y clang-format + run: | + apt-get update -y + apt-get upgrade -y + apt-get install -y clang-format - name: Check code formatting run: |