Skip to content

Commit

Permalink
nit nit
Browse files Browse the repository at this point in the history
  • Loading branch information
chrabyrd committed Apr 3, 2024
1 parent bb4945c commit 5cbf544
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ jobs:
name: coverage-report
path: |
coverage.json
.coverage
check-coverage:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -111,15 +110,14 @@ jobs:
echo "Coverage decreased from $baseline_coverage% to $current_coverage%"
exit 1
else
echo "$baseline_coverage% = $current_coverage%, Coverage didn't decrease. Committing new .coverage and coverage.json."
echo "$baseline_coverage% = $current_coverage%, Coverage didn't decrease. Committing new coverage.json."
git config user.name github-actions
git config user.email [email protected]
git add .coverage
git add coverage.json
git commit -m "automatically update .coverage and coverage.json"
git commit -m "automatically update coverage.json"
git push -f origin HEAD:${{ github.head_ref }}
fi
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ arches_rdm_example_project/settings_local.py
arches_rdm_example_project/webpack/webpack-stats.json
arches_rdm_example_project/webpack/webpack-user-config.js
.vscode/
.coverage
coverage.json
*.egg-info
.DS_STORE
CACHE

0 comments on commit 5cbf544

Please sign in to comment.