Skip to content

Commit

Permalink
Fix capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
SharafMohamed committed Aug 13, 2024
1 parent 9e5b21d commit b433bb1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,19 @@ jobs:
with:
submodules: "recursive"

Check failure on line 36 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / lint (ubuntu-latest)

36:1 [trailing-spaces] trailing spaces
- name: install catch2
- name: Install catch2

Check failure on line 37 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / lint (ubuntu-latest)

37:15 [quoted-strings] string value is not quoted with double quotes
run: |
"cd ./submodules/Catch2"
"cmake -B build -S . -DBUILD_TESTING=OFF"
"sudo cmake --build build/ --target install"
- name: build
- name: Build executables

Check failure on line 43 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / lint (ubuntu-latest)

43:15 [quoted-strings] string value is not quoted with double quotes
run: |
"cmake -B ./build -DCMAKE_BUILD_TYPE=${{matrix.build_type}}"
"cmake --build ./build --config ${{matrix.build_type}}"
"cmake --install ./build --prefix ./install"
"cmake -S examples -B ./examples/build -DCMAKE_BUILD_TYPE=${{matrix.build_type}}"
"cmake --build ./examples/build --config ${{matrix.build_type}}"
- name: run unit-test
- name: Run unit-test

Check failure on line 51 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / lint (ubuntu-latest)

51:15 [quoted-strings] string value is not quoted with double quotes
run: "./build/unit-test"

0 comments on commit b433bb1

Please sign in to comment.