Skip to content

Commit 7d6d7b9

Browse files
committed
anchor test
1 parent 8ba1f63 commit 7d6d7b9

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,3 +218,31 @@ jobs:
218218
- name: Set up Docker Buildx
219219
uses: docker/setup-buildx-action@v3
220220
- run: docker buildx inspect --bootstrap
221+
222+
anchor1:
223+
name: Anchor test
224+
runs-on: ubuntu-24.04
225+
steps:
226+
- name: Step 1
227+
if: &lintcond true
228+
run: echo ok
229+
- name: Step 2
230+
if: *lintcond
231+
run: echo ok
232+
- name: Step 3
233+
if: *lintcond
234+
run: echo ok
235+
236+
anchor2:
237+
name: Anchor test
238+
runs-on: ubuntu-24.04
239+
steps:
240+
- name: Step 1
241+
if: &lintcond false
242+
run: echo ok
243+
- name: Step 2
244+
if: *lintcond
245+
run: echo ok
246+
- name: Step 3
247+
if: *lintcond
248+
run: echo ok

0 commit comments

Comments
 (0)