Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesLorenz committed Sep 1, 2024
1 parent 9aa1eed commit b3110a7
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
-DWERROR=1
-DCMAKE_BUILD_TYPE=Debug
.",
build: "cmake --build --config Debug -B build",
build: "cmake --build build --config Debug",
test: "ctest --output-on-failure --test-dir build"
}
- {
Expand Down Expand Up @@ -85,8 +85,11 @@ jobs:
test: "cd build && ctest --output-on-failure"
}
steps:
- uses: actions/checkout@v3
- name: install_deps
- name: check out
- uses: actions/checkout@v4
with:

Check failure on line 90 in .github/workflows/ccpp.yml

View workflow job for this annotation

GitHub Actions / yamllint

90:14 [trailing-spaces] trailing spaces
fetch-depth: 0
- name: install deps
if: ${{ matrix.config.enabled == 1 }}
run: ${{ matrix.config.deps }}
- name: create build directory
Expand Down

0 comments on commit b3110a7

Please sign in to comment.