Skip to content

Commit 9865801

Browse files
committed
WIP
Signed-off-by: Brian Harring <ferringb@gmail.com>
1 parent 4682cb8 commit 9865801

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ on:
55
branches-ignore: [deploy]
66
pull_request:
77
branches: [master]
8-
8+
workflow_call:
9+
inputs:
10+
artifact-id:
11+
required: true
12+
type: number
13+
description: The artifact-id to run the tests against.
914
jobs:
1015
build:
1116
runs-on: ${{ matrix.os }}
@@ -33,7 +38,10 @@ jobs:
3338

3439
steps:
3540
- name: Checkout code
36-
uses: actions/checkout@v4
41+
uses: git+https://github.com./.github/actions/checkout
42+
with:
43+
artifact-id: ${{ inputs.artifact-id }}
44+
3745

3846
- name: Pin dependencies to minimal versions
3947
if: ${{ matrix.deps == 'minimal-deps' }}

0 commit comments

Comments
 (0)