We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b7b116 commit 3b2a39cCopy full SHA for 3b2a39c
.github/workflows/ci.yml
@@ -5,6 +5,12 @@ jobs:
5
runs-on: ubuntu-latest
6
steps:
7
- uses: actions/checkout@v4
8
+ - name: init
9
+ run: |
10
+ sudo apt update -yqq && sudo apt install -yqq clang-format-19
11
+ sudo update-alternatives --remove-all clang-format
12
+ sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-19 10
13
+ clang-format --version
14
- name: format code
15
run: scripts/format_code.sh
16
- name: check diff
0 commit comments