Skip to content

Commit

Permalink
changed slash to backslash in windows environment variables
Browse files Browse the repository at this point in the history
  • Loading branch information
GuyTeichman committed Dec 5, 2023
1 parent e7082ee commit f8456aa
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,10 @@ jobs:

- name: Set up environment variables for Windows
run: |
echo "COVERAGE_PATH=${GITHUB_WORKSPACE}/coverage/lcov.info" >> $env:GITHUB_ENV
echo "COVERAGE_PATH=${GITHUB_WORKSPACE}\coverage\lcov.info" >> $env:GITHUB_ENV
echo "CARGO_INCREMENTAL=0" >> $env:GITHUB_ENV
echo "RUSTFLAGS=-C instrument-coverage" >> $env:GITHUB_ENV
echo "LLVM_PROFILE_FILE=${{ github.workspace }}/coverage/%p-%m.profraw" >> $env:GITHUB_ENV
mkdir -p ${GITHUB_WORKSPACE}/coverage
echo "LLVM_PROFILE_FILE=${{ github.workspace }}\coverage\%p-%m.profraw" >> $env:GITHUB_ENV
if: runner.os == 'Windows'
- name: Install Rust nightly toolchain
uses: actions-rs/toolchain@v1
Expand Down

0 comments on commit f8456aa

Please sign in to comment.