animated-cube/.github/workflows/test.yaml
Zakary Timson 62c2212a3c
All checks were successful
Workflow Test / Step One (push) Successful in 2s
Workflow Test / Step Two (push) Successful in 1s
Update .github/workflows/test.yaml
2023-08-06 23:26:51 +00:00

19 lines
291 B
YAML

name: Workflow Test
on: push
jobs:
first:
name: Step One
runs-on: ubuntu-latest
container: ubuntu:latest
steps:
- run: ls
- run: touch test.txt
- run: ls
second:
name: Step Two
needs: first
runs-on: ubuntu-latest
steps:
- run: ls