1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-01-07 07:50:32 +00:00

CI: apply clang-format also to tests and utils folders

This commit is contained in:
Carles Fernandez 2024-12-22 00:57:13 +01:00
parent c93f07176a
commit fb13f33f65
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D

View File

@ -113,13 +113,22 @@ jobs:
clang-format:
runs-on: ubuntu-latest
strategy:
matrix:
path:
- check: 'src'
exclude: ''
- check: 'tests'
exclude: ''
- check: 'utils'
exclude: '(matlab|scripts|python)'
steps:
- uses: actions/checkout@v4
- name: run clang-format
uses: jidicula/clang-format-action@v4.11.0
uses: jidicula/clang-format-action@v4
with:
clang-format-version: "15"
check-path: "src"
check-path: ${{ matrix.path }}
exclude-regex: '(libs\/gsl\/)|^.*\.(cu|proto)$'
clang-tidy: