We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ea1153 commit e56485cCopy full SHA for e56485c
1 file changed
.github/workflows/ci.yml
@@ -9,6 +9,8 @@ jobs:
9
runs-on: ubuntu-latest
10
steps:
11
- uses: actions/checkout@v2
12
+ with:
13
+ ref: ${{ github.event.pull_request.head.sha }}
14
- name: Set up Python 3.8
15
uses: actions/setup-python@v2
16
with:
@@ -23,3 +25,9 @@ jobs:
23
25
uses: codecov/codecov-action@v1
24
26
# with:
27
# token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
28
+ - name: Report results to DeepSource
29
+ run: |
30
+ curl https://deepsource.io/cli | sh
31
+ ./bin/deepsource report --analyzer test-coverage --key python --value-file ./coverage.xml
32
+ env:
33
+ DEEPSOURCE_DSN: ${{ secrets.DEEPSOURCE_DSN }}
0 commit comments