Various refactorings (round #1) #198
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: Check code style | |
| on: [pull_request] | |
| jobs: | |
| clang-format: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v2 | |
| - name: Run clang-format | |
| run: | | |
| set -x | |
| sudo apt-get install clang-format-19 | |
| CLANG_FORMAT=clang-format-19 ./test-clang-format.sh | |
| - run: echo "🍏 This job's status is ${{ job.status }}." |