Move docker tests after api/unit testing
It makes more sense to structure the order of tests to go from api and unit testing -> validate docker image works as expected -> build and deploy docker image.main
parent
79a4a17311
commit
a8afd49f84
|
@ -1,9 +1,14 @@
|
||||||
name: docker_tests
|
name: docker_tests
|
||||||
|
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
workflow_run:
|
||||||
|
workflows: ["tests"]
|
||||||
|
branches: [main]
|
||||||
|
types:
|
||||||
|
- completed
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
on-success:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: checkout code
|
- name: checkout code
|
||||||
|
|
Loading…
Reference in New Issue