Skip to content

Commit

Permalink
Fix env variable syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherHogan committed Dec 16, 2020
1 parent 3e90724 commit 646692c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ jobs:
- name: Build and Test
run: |
ci/install_hermes.sh
mkdir -p coverage
mkdir -p "${GITHUB_WORKSPACE}/coverage"
pushd build/src/CMakeFiles/hermes.dir
gcov -r buffer_pool.cc.gcno
lcov -c -d . -o "${{ env.GITHUB_WORKSPACE }}/coverage/lcov.info"
lcov -c -d . -o "${GITHUB_WORKSPACE}/coverage/lcov.info"
- name: Coveralls
uses: coverallsapp/github-action@master
Expand Down

0 comments on commit 646692c

Please sign in to comment.