Skip to content

save

save #1

name: Demo workflow
on:
# label: # uncomment push
push:
branches:
- main
jobs:
build_service:
name: Build service
uses: ./.github/workflows/02_Build-service.yaml
testing:
name: Run integration tests
needs:
- build_service
uses: ./.github/workflows/03_Integration-testing.yaml
functionnal-testing:
name: Run functionnal tests
needs:
- testing
uses: ./.github/workflows/04_Functionnal-testing.yaml