Add .github/workflows/test.yaml
This commit is contained in:
parent
96dfdabe84
commit
d867b63415
17
.github/workflows/test.yaml
vendored
Normal file
17
.github/workflows/test.yaml
vendored
Normal 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
|
Loading…
Reference in New Issue
Block a user