File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -30,10 +30,11 @@ jobs:
3030 - name : Run end to end tests
3131 run : invoke end-to-end
3232
33- - if : matrix.os == 'ubuntu-latest' && matrix.python-version == 3.9
33+ - if : matrix.os == 'ubuntu-latest' && matrix.python-version == 3.12
3434 name : Upload integration codecov report
3535 uses : codecov/codecov-action@v4
3636 with :
3737 flags : integration
38- file : ' ./integration_cov.xml'
38+ file : ${{ github.workspace }}/integration_cov.xml
39+ fail_ci_if_error : true
3940 token : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change @@ -30,10 +30,11 @@ jobs:
3030 - name : Run unit tests
3131 run : invoke unit
3232
33- - if : matrix.os == 'ubuntu-latest' && matrix.python-version == 3.9
33+ - if : matrix.os == 'ubuntu-latest' && matrix.python-version == 3.12
3434 name : Upload unit codecov report
3535 uses : codecov/codecov-action@v4
3636 with :
3737 flags : unit
38- file : ' ./unit_cov.xml'
38+ file : ${{ github.workspace }}/unit_cov.xml
39+ fail_ci_if_error : true
3940 token : ${{ secrets.CODECOV_TOKEN }}
You can’t perform that action at this time.
0 commit comments