Skip to content

Commit

Permalink
set codecov env variable in the right place
Browse files Browse the repository at this point in the history
  • Loading branch information
samcmill committed Jan 7, 2020
1 parent 2c136db commit cf3151a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/code-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
run: ./configure --enable-code-coverage

- name: make
run: CODE_COVERAGE_OUTPUT_FILE=wassail-coverage.info make -j$(nproc)
run: make -j$(nproc)

- name: make check-code-coverage
run: VERBOSE=1 make check-code-coverage -j$(nproc)
run: CODE_COVERAGE_OUTPUT_FILE=wassail-coverage.info VERBOSE=1 make check-code-coverage -j$(nproc)

- name: Coveralls
uses: coverallsapp/github-action@master
Expand Down

0 comments on commit cf3151a

Please sign in to comment.