Skip to content

Commit 727af6d

Browse files
authored
feat: Don't explicitly state the repository to test (#184)
* Allow ConfigurationStore to be overidden * Update test.yaml * Update EppoClient.java
1 parent 422ab11 commit 727af6d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/test.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ on:
1919
type: string
2020
description: The branch of the SDK to test
2121
required: false
22+
base_repo:
23+
type: boolean
24+
description: Explictly define the repository to test
25+
required: false
2226

2327
env:
2428
SDK_BRANCH: ${{ inputs.sdk_branch || github.head_ref || github.ref_name }}
@@ -50,8 +54,8 @@ jobs:
5054
- name: Check out Java SDK
5155
uses: actions/checkout@v4
5256
with:
53-
repository: Eppo-exp/android-sdk
54-
ref: ${{ env.SDK_BRANCH}}
57+
repository: ${{ inputs.base_repo || github.repository }}
58+
ref: ${{ env.SDK_BRANCH }}
5559

5660
- name: Set up JDK 17
5761
uses: actions/setup-java@v3

0 commit comments

Comments
 (0)