Skip to content

Workshop Flow

Workshop Flow #5

Workflow file for this run

name: Workshop Flow
on:
workflow_dispatch:
jobs:
# A job to help check the workshop flow
diff-train:
runs-on: ubuntu-latest
env:
TERM: xterm-color
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: git diff --color origin/step1 origin/step2
- run: git diff --color origin/step2 origin/step3
- run: git diff --color origin/step3 origin/step4
- run: git diff --color origin/step4 origin/step5
- run: git diff --color origin/step5 origin/step6