"No ZIP64" wrapper #20
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] | |
| permissions: | |
| contents: read | |
| jobs: | |
| format: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| path: | |
| - "." | |
| - "src" | |
| - "test" | |
| - "fuzz" | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| # check out HEAD on the branch | |
| ref: ${{ github.head_ref }} | |
| # make sure the parent commit is grabbed as well, because | |
| # that's what will get formatted (i.e. the most recent commit) | |
| fetch-depth: 2 | |
| # format the latest commit | |
| - uses: jidicula/[email protected] | |
| with: | |
| clang-format-version: "21" | |
| check-path: ${{ matrix.path }} | |
| fallback-style: "LLVM" |