workflow with docker #9
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: needs workflow | |
on: push | |
jobs: | |
job2: | |
runs-on: ubuntu-latest | |
needs: job1 | |
steps: | |
- name: step 1 | |
run: | | |
echo "::error title=Job2 error title::Job2 error message" | |
exit 1 | |
job1: | |
runs-on: ubuntu-latest | |
steps: | |
- name: step1 | |
run: echo job1 step1 | |
job3: | |
runs-on: ubuntu-latest | |
needs: [job1, job2] | |
steps: | |
- name: step1 | |
run: echo job3 step1 | |
job4: | |
runs-on: ubuntu-latest | |
if: ${{ always() }} | |
needs: [job1, job2] | |
steps: | |
- name: step1 | |
run: echo job4 step1 |