Skip to content

Commit

Permalink
fix coveralls flag-name
Browse files Browse the repository at this point in the history
  • Loading branch information
vtjnash committed Apr 22, 2022
1 parent 856defe commit a5e824b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/CI.yml
Expand Up @@ -9,7 +9,7 @@ on:
tags: '*'
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
name: Julia ${{ join(matrix.*, ' - ') }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -49,10 +49,11 @@ jobs:
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: lcov.info
flag-name: run-${{ matrix.test_number }}
flag-name: Julia ${{ join(matrix.*, ' - ') }}
parallel: true
finish:
needs: test
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
Expand Down

0 comments on commit a5e824b

Please sign in to comment.