Skip to content

Commit

Permalink
feat: add pipe to report coverage to our service #965
Browse files Browse the repository at this point in the history
  • Loading branch information
iurynogueira committed Nov 30, 2023
1 parent b0af746 commit 10e5fc9
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Update coverage on service

on:
push:
branches:
- 965-report-coverage-to-collect-coverage-service

jobs:
update-coverage:
runs-on: ubuntu-latest

steps:
- name: checkout
uses: actions/checkout@v2

- name: Update coverage on service
run: |
curl -X POST \
-H "Content-Type: application/json" \
-d '{"id": 1, "coverage": 88}' \
https://collect-coverage-brisanet.koyeb.app/systems

0 comments on commit 10e5fc9

Please sign in to comment.