From bc84bc61a0fac8b6f11466aed44b727149db1d1c Mon Sep 17 00:00:00 2001 From: Alex Kotov Date: Mon, 31 Jan 2022 12:54:50 +0500 Subject: [PATCH] Use full command line options in scripts --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3301ca1..f5015f7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,7 +25,7 @@ jobs: toolchain: stable - name: dependencies - run: sudo apt-get -y install clang tcc + run: sudo apt-get --yes install clang tcc - name: autogen run: ./autogen.sh - name: configure @@ -42,7 +42,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: dependencies - run: sudo apt-get -y install cppcheck + run: sudo apt-get --yes install cppcheck - name: cppcheck source code # TODO: don't suppress "src/printf.c" run: cppcheck --quiet --error-exitcode=1 --std=c99 --enable=warning,style,performance,portability --suppress='*:src/printf.c' include/ src/ @@ -58,7 +58,7 @@ jobs: with: submodules: true - name: dependencies - run: sudo apt-get -y install cppcheck rake + run: sudo apt-get --yes install cppcheck rake - name: autogen run: ./autogen.sh - name: configure @@ -82,7 +82,7 @@ jobs: with: ruby-version: 3.0 - name: dependencies - run: sudo apt-get -y install cppcheck + run: sudo apt-get --yes install cppcheck - name: autogen run: ./autogen.sh - name: configure