There was an error while loading. Please reload this page.
1 parent 3dbe50e commit 21d0a0cCopy full SHA for 21d0a0c
1 file changed
.github/workflows/brand-new-chain-test.yml
@@ -27,6 +27,10 @@ jobs:
27
brand-new-test:
28
runs-on: ubuntu-20.04
29
steps:
30
+ - name: Show the inputs
31
+ run: |
32
+ echo "Chain: ${{ github.event.inputs.chain }}"
33
+ echo "Testcases: ${{ github.event.inputs.testcases }}"
34
- name: Clone simple CI
35
uses: GuillaumeFalourd/clone-github-repo-action@v2.3
36
with:
@@ -174,4 +178,6 @@ jobs:
174
178
export SET_DATETIME=${DATETIME}
175
179
# [TODO] Use the docker image to regenerate the docker image...
176
180
# Need to check several things
177
- bash -x new.chain.test.bash --chain ${{ github.event.inputs.chain }} --test ${{ github.event.inputs.testcases }}
181
+ chain=${{ github.event.inputs.chain }} || "peaq-dev"
182
+ testcases=${{ github.event.inputs.testcases }} || "all"
183
+ bash -x new.chain.test.bash --chain $chain --test $testcases
0 commit comments