From 94f071b0bab3e36f4df708fbb6d873aebf1acbc7 Mon Sep 17 00:00:00 2001 From: Rasmus Karlsson Date: Sat, 2 Nov 2019 12:19:25 +0100 Subject: [PATCH] add -y to apt-get install in check-formatting workflow --- .github/workflows/check-formatting.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-formatting.yml b/.github/workflows/check-formatting.yml index 37c98ef85..ad5be47a3 100644 --- a/.github/workflows/check-formatting.yml +++ b/.github/workflows/check-formatting.yml @@ -13,7 +13,7 @@ jobs: run: apt-get update - name: Install clang-format - run: apt-get install clang-format + run: apt-get -y install clang-format - name: Check formatting run: ./tools/check-format.sh