Add .github/workflows/test.yaml

This commit is contained in:
Zakary Timson 2023-08-06 23:20:12 +00:00
parent 96dfdabe84
commit d867b63415

17
.github/workflows/test.yaml vendored Normal file
View File

@ -0,0 +1,17 @@
name: Workflow Test
on: push
jobs:
first:
name: Step One
runs-on: ubuntu-latest
steps:
run: ls
run: touch test.txt
run: ls
second:
name: Step Two
needs: first
runs-on: ubuntu-latest
steps:
run: ls