forked from Ruvail/NXTFolio
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from BranHill21/debugging_cov
looking for cc reporter file
- Loading branch information
Showing
1 changed file
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,8 +100,14 @@ jobs: | |
run: echo "RAILS_HOST=$(hostname -I | awk '{print $1}')" >> $GITHUB_ENV | ||
- name: Run spec tests | ||
run: bin/rake spec | ||
- name: Debug coverage file | ||
run: ls -lah coverage/ | ||
- name: Debug CC Test Reporter ID | ||
run: | | ||
if [ -z "$CC_TEST_REPORTER_ID" ]; then | ||
echo "Error: CC_TEST_REPORTER_ID is not set or is empty" | ||
exit 1 | ||
else | ||
echo "CC_TEST_REPORTER_ID is set." | ||
fi | ||
- name: Report coverage | ||
uses: paambaati/[email protected] | ||
env: | ||
|