blob: a9c970432a521504c44fae3264f710a48c5afe42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
name: Checkout
on: push
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
path: test-subdir1
- run: grep "Checkout" test-subdir1/issue-122/main.yaml
- uses: actions/checkout@v2
with:
repository: actions/checkout
path: test-subdir2
- run: grep "Checkout" test-subdir2/action.yml
|