ci: use more sensible name for checks
This commit is contained in:
parent
e421c963dc
commit
7adbf319b1
|
@ -29,6 +29,7 @@ env:
|
|||
jobs:
|
||||
eunit_and_proper:
|
||||
runs-on: ${{ inputs.runner }}
|
||||
name: "eunit_and_proper (${{ matrix.profile }})"
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
|
@ -69,6 +70,7 @@ jobs:
|
|||
|
||||
ct_docker:
|
||||
runs-on: ${{ inputs.runner }}
|
||||
name: "ct_docker (${{ matrix.app }}-${{ matrix.suitegroup }})"
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
|
@ -116,6 +118,7 @@ jobs:
|
|||
|
||||
ct:
|
||||
runs-on: ${{ inputs.runner }}
|
||||
name: "ct (${{ matrix.app }}-${{ matrix.suitegroup }})"
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
|
@ -155,6 +158,17 @@ jobs:
|
|||
name: logs-${{ matrix.profile }}-${{ matrix.prefix }}-${{ matrix.otp }}-sg${{ matrix.suitegroup }}
|
||||
path: _build/test/logs
|
||||
|
||||
tests_passed:
|
||||
needs:
|
||||
- eunit_and_proper
|
||||
- ct
|
||||
- ct_docker
|
||||
runs-on: ${{ inputs.runner }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
steps:
|
||||
- run: echo "All tests passed"
|
||||
|
||||
make_cover:
|
||||
needs:
|
||||
- eunit_and_proper
|
||||
|
|
|
@ -23,6 +23,7 @@ env:
|
|||
jobs:
|
||||
static_checks:
|
||||
runs-on: ${{ inputs.runner }}
|
||||
name: "static_checks (${{ matrix.profile }})"
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
|
|
Loading…
Reference in New Issue