-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
39 additions
and
21 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 |
---|---|---|
|
@@ -98,6 +98,7 @@ jobs: | |
zip -r simplecov.zip coverage; | ||
RESPONSE=$(curl -X POST https://flaky.xyz/api/reports/simplecov \ | ||
-F "[email protected]" \ | ||
-F "branch=${{ github.head_ref || github.ref_name }}" \ | ||
-H "Authorization: Bearer ${{ secrets.FLAKY_XYZ_TOKEN }}"); | ||
echo $RESPONSE; | ||
echo "MARKDOWN=$(echo $RESPONSE | jq -r '.markdown')" >> $GITHUB_OUTPUT; | ||
|
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
precommit: | ||
rubocop | ||
rails test test/** |
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 |
---|---|---|
|
@@ -4,10 +4,10 @@ This is a project to simplify collection and analysis of CI results. | |
|
||
- [x] Be able to upload and see SimpleCov HTML reports. | ||
- [ ] Update instructions with the working version from the monorepo. | ||
- [ ] Report Rspec test coverage along the time. | ||
- [ ] Report Rspec test coverage along the time, per-branch. | ||
- [ ] Be able to upload and see Sorbet's Spoom HTML reports. | ||
- [ ] Report Sorbet typing along the time. | ||
- [ ] Be able to track failing specs, and analyze which could be flaky in need of some help. | ||
- [ ] Be able to track failing specs, and analyze which could be flaky in need of some extra attention. | ||
|
||
## Development environment | ||
|
||
|
@@ -68,6 +68,7 @@ your-existing-test-action-on-github: | |
-F "[email protected]" \ | ||
-F "expected_parts=1" \ | ||
-F "run_identifier=${{ github.run_id }}" \ | ||
-F "branch=${{ github.head_ref || github.ref_name }}" \ | ||
-H "Authorization: Bearer ${{ secrets.FLAKY_XYZ_TOKEN }}"); | ||
echo "MARKDOWN=$(echo $RESPONSE | jq -r '.markdown')" >> $GITHUB_OUTPUT; | ||
|
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
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