data_logger: burst write support #993
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: clang-format | |
| on: | |
| pull_request: | |
| paths: | |
| - '.github/workflows/clang-format.yml' | |
| - '**/*.c' | |
| - '**/*.h' | |
| jobs: | |
| formatting-check: | |
| name: Formatting check on repository | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run clang-format style check. | |
| uses: jidicula/[email protected] | |
| with: | |
| # Default version shipped with `ms-vscode.cpptools` | |
| clang-format-version: '18' | |
| exclude-regex: (lib/crypto/ascon)|(lib/crypto/XKCP) |