Skip to content

Commit

Permalink
Use the right env syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
pcolby committed Oct 13, 2024
1 parent 422bdc8 commit 37be7bb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,6 @@ jobs:
- name: Install LCOV
if: matrix.toolchain != 'msvc'
run: pacman --sync --noconfirm --verbose mingw-w64-x86_64-lcov
- run: dir C:\msys64\ /s
#- run: C:\msys64\mingw64\bin\lcov --version

Check warning on line 500 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / yamllint

500:8 [comments] missing starting space in comment
#- run: lcov --version

Check warning on line 501 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / yamllint

501:8 [comments] missing starting space in comment
- run: lcov --version
Expand Down Expand Up @@ -586,6 +585,10 @@ jobs:
working-directory: ${{ runner.temp }}
- name: Collate test coverage
if: matrix.toolchain != 'msvc'
run: cmake --build "%RUNNER_TEMP%" --target coverage --verbose
- name: Collate test coverage
if: matrix.toolchain != 'msvc'
shell: bash
run: cmake --build "$RUNNER_TEMP" --target coverage --verbose
- name: Upload test results
if: matrix.arch != 'arm64' && fromJSON(steps.post-build.outputs.tap)
Expand Down

0 comments on commit 37be7bb

Please sign in to comment.