Skip to content

Commit

Permalink
fix: better off using YAML literals
Browse files Browse the repository at this point in the history
  • Loading branch information
iWas-Coder committed Sep 5, 2024
1 parent 0f03c85 commit 7591874
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ jobs:
with:
submodules: recursive
- name: install-dependencies
run: >
sudo apt-get install -y
libxcursor-dev
libxrandr-dev
libxinerama-dev
run: |
sudo apt-get install -y \
libxcursor-dev \
libxrandr-dev \
libxinerama-dev \
libxi-dev
- name: setup-codeql
uses: github/codeql-action/init@v3
Expand All @@ -59,10 +59,10 @@ jobs:
paths-ignore: [vendor]
- name: configure
run: >
cmake
-B build
-DCMAKE_BUILD_TYPE=${{ matrix.build-type }}
-DCMAKE_C_COMPILER=${{ matrix.c-compiler }}
cmake \
-B build \
-DCMAKE_BUILD_TYPE=${{ matrix.build-type }} \
-DCMAKE_C_COMPILER=${{ matrix.c-compiler }} \
-DCMAKE_CXX_COMPILER=${{ matrix.cxx-compiler }}
- name: build
run: cmake --build build
Expand Down

0 comments on commit 7591874

Please sign in to comment.