Skip to content

add some tests with filter config files and make sure the cloning fil… #4905

add some tests with filter config files and make sure the cloning fil…

add some tests with filter config files and make sure the cloning fil… #4905

name: Static Analyzers
on:
workflow_dispatch:
push:
branches:
- develop
- main
pull_request:
branches:
- develop
- main
jobs:
cpplint:
runs-on: ubuntu-latest
container: helics/buildenv:cpplint
steps:
- uses: actions/checkout@v4
- name: Run cpplint
run: cpplint --counting=detailed --recursive examples benchmarks src tests
clang-tidy:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
container: helics/buildenv:clang-extra-tools
steps:
- uses: actions/checkout@v4
- name: Run clang-tidy on changed files
shell: bash
run: |
git config --global --add safe.directory ${GITHUB_WORKSPACE}
./.github/actions/run-clang-tidy-pr.sh