workflows: split out dev checks into jobs
Split out the dev checks into multiple jobs, the benefit of this is that it will be easier to see which check is failing and why.
This commit is contained in:
parent
9247ea6196
commit
eca4e55c67
3 changed files with 75 additions and 10 deletions
6
.github/workflows/unit-tests.yml
vendored
6
.github/workflows/unit-tests.yml
vendored
|
|
@ -7,6 +7,12 @@ on:
|
|||
branches: [ "main" ]
|
||||
merge_group:
|
||||
|
||||
# this prevents multiple jobs from the same pr
|
||||
# running when new changes are pushed.
|
||||
concurrency:
|
||||
group: ${{github.workflow}}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
unit-tests:
|
||||
name: Service Tests
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue