Workshop Flow #1
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: Workshop Flow | |
on: | |
workflow_dispatch: | |
jobs: | |
# A job to help check the workshop flow | |
diff-train: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: git diff step1 step2 | |
- run: git diff step2 step3 | |
- run: git diff step3 step4 | |
- run: git diff step4 step5 | |
- run: git diff step5 step6 |