[Actions] GitHub Actions will now also built upwards dependencies but they won't block merging #189
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build ThunderInterfaces on Linux | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
jobs: | |
# change the user and branch name in each one after the templates are merged | |
Thunder: | |
uses: VeithMetro/Thunder/.github/workflows/Linux build template.yml@development/actions | |
ThunderInterfaces: | |
needs: Thunder | |
uses: VeithMetro/ThunderInterfaces/.github/workflows/Linux build template.yml@development/actions | |
ThunderClientLibraries: | |
needs: ThunderInterfaces | |
uses: VeithMetro/ThunderClientLibraries/.github/workflows/Linux build template.yml@development/actions | |
ThunderNanoServices: | |
needs: ThunderInterfaces | |
uses: VeithMetro/ThunderNanoServices/.github/workflows/Linux build template.yml@development/actions | |
ThunderNanoServicesRDK: | |
needs: ThunderInterfaces | |
uses: VeithMetro/ThunderNanoServicesRDK/.github/workflows/Linux build template.yml@development/actions |