Skip to content

Commit 7591874

Browse files
committed
fix: better off using YAML literals
1 parent 0f03c85 commit 7591874

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/ci.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ jobs:
4545
with:
4646
submodules: recursive
4747
- name: install-dependencies
48-
run: >
49-
sudo apt-get install -y
50-
libxcursor-dev
51-
libxrandr-dev
52-
libxinerama-dev
48+
run: |
49+
sudo apt-get install -y \
50+
libxcursor-dev \
51+
libxrandr-dev \
52+
libxinerama-dev \
5353
libxi-dev
5454
- name: setup-codeql
5555
uses: github/codeql-action/init@v3
@@ -59,10 +59,10 @@ jobs:
5959
paths-ignore: [vendor]
6060
- name: configure
6161
run: >
62-
cmake
63-
-B build
64-
-DCMAKE_BUILD_TYPE=${{ matrix.build-type }}
65-
-DCMAKE_C_COMPILER=${{ matrix.c-compiler }}
62+
cmake \
63+
-B build \
64+
-DCMAKE_BUILD_TYPE=${{ matrix.build-type }} \
65+
-DCMAKE_C_COMPILER=${{ matrix.c-compiler }} \
6666
-DCMAKE_CXX_COMPILER=${{ matrix.cxx-compiler }}
6767
- name: build
6868
run: cmake --build build

0 commit comments

Comments
 (0)