We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fe3f2d commit 0fcfb5eCopy full SHA for 0fcfb5e
.github/workflows/test.yaml
@@ -43,10 +43,15 @@ jobs:
43
cache: true
44
- name: Run unit tests
45
run: make test/go COVERAGE=true MODULES=${{ matrix.module }}
46
+ - name: make flag
47
+ id: make-flag
48
+ run: |
49
+ echo "flags=$(echo ${{ matrix.module }} | tr '/' '-')" >> $GITHUB_OUTPUT
50
- name: Upload coverage reports to Codecov
51
uses: codecov/codecov-action@v3
52
with:
- flags: ${{ matrix.module }}
53
+ root_dir: ${{ matrix.module }}
54
+ flags: ${{ steps.make-flag.outputs.flags }}
55
env:
56
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
57
0 commit comments