From 0d1c0cbb14904c4bd0d2533c11fdf0e83474c547 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Sun, 30 May 2021 12:56:00 -0400 Subject: [PATCH] Fix clang/cppcheck commands. --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2add15d..20caf12 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,9 +24,9 @@ jobs: ASAN_OPTIONS: leak_check_at_exit=false run: make test - name: clang static analyzer - run: cd pappl && make CC=clang "GHA_ERROR=::error::" clang + run: make CC=clang "GHA_ERROR=::error::" clang - name: cppcheck - run: cd pappl && make "GHA_ERROR=::error::" cppcheck + run: make "GHA_ERROR=::error::" cppcheck build-macos: @@ -41,6 +41,6 @@ jobs: - name: test run: make test - name: clang static analyzer - run: cd pappl && make CC=clang "GHA_ERROR=::error::" clang + run: make CC=clang "GHA_ERROR=::error::" clang - name: cppcheck - run: cd pappl && make "GHA_ERROR=::error::" cppcheck + run: make "GHA_ERROR=::error::" cppcheck