From df4aa4dd4111b5ea0f621ceb100463c50881d219 Mon Sep 17 00:00:00 2001 From: Wiktor Bajor Date: Sat, 6 Jul 2024 13:03:11 +0200 Subject: [PATCH] Setup correcto src path in github/actions and remove cpp linters --- .github/actions/lint/run.sh | 2 +- .github/workflows/ros.yaml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/lint/run.sh b/.github/actions/lint/run.sh index 9d94eff..7042c1b 100755 --- a/.github/actions/lint/run.sh +++ b/.github/actions/lint/run.sh @@ -2,4 +2,4 @@ set -e ./setup.sh -ament_${LINTER} src/ +ament_${LINTER} . diff --git a/.github/workflows/ros.yaml b/.github/workflows/ros.yaml index 61917ab..df8471e 100644 --- a/.github/workflows/ros.yaml +++ b/.github/workflows/ros.yaml @@ -8,8 +8,8 @@ on: - foxy* - humble* - iron* - - rolling - - main + - rolling* + - main* workflow_dispatch: jobs: @@ -28,7 +28,7 @@ jobs: strategy: fail-fast: false matrix: - linter: [cppcheck, cpplint, uncrustify, lint_cmake, xmllint, flake8, pep257] + linter: [uncrustify, xmllint, flake8, pep257] steps: - name: Checkout code uses: actions/checkout@v3