We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81789b3 commit 9709855Copy full SHA for 9709855
1 file changed
.github/workflows/ccpp.yml
@@ -15,11 +15,12 @@ jobs:
15
- uses: actions/checkout@v2
16
17
- name: Install clang-format-15
18
- run: source /etc/os-release
19
- run: wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add -
20
- run: sudo add-apt-repository "deb http://apt.llvm.org/$UBUNTU_CODENAME/ llvm-toolchain-$UBUNTU_CODENAME main"
21
- run: sudo apt-get update
22
- run: sudo apt-get install clang-format-15
+ run: |
+ source /etc/os-release
+ wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add -
+ sudo add-apt-repository "deb http://apt.llvm.org/$UBUNTU_CODENAME/ llvm-toolchain-$UBUNTU_CODENAME main"
+ sudo apt-get update
23
+ sudo apt-get install clang-format-15
24
25
- name: Validate Formatting
26
run: sh ./doc/scripts/validate-formatting.sh
0 commit comments