Skip to content

Various refactorings (round #1) #198

Various refactorings (round #1)

Various refactorings (round #1) #198

Workflow file for this run

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 }}."