Skip to content

Commit

Permalink
ci: pass module list to upload-coverage
Browse files Browse the repository at this point in the history
Signed-off-by: Marko Kungla <[email protected]>
  • Loading branch information
mkungla committed Jan 29, 2024
1 parent 2322f79 commit dc59f3c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ jobs:
test:
needs: lint
runs-on: ubuntu-latest
outputs:
modules: ${{ steps.coveredmodules.outputs.modules }}
steps:
- uses: actions/checkout@v4
- name: Test all packages
Expand All @@ -46,7 +48,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Upload coverage
run: echo ${{ fromJson(needs.test.outputs.modules) }}
run: echo "${{ fromJson(needs.test.outputs.modules) }}"
# test:
# needs: lint
# runs-on: ubuntu-latest
Expand Down

0 comments on commit dc59f3c

Please sign in to comment.