Skip to content

Commit

Permalink
add pfm test to yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
pgoos committed Mar 11, 2024
1 parent a2110e1 commit 4242d31
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/e2e-test-workflow-call.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,27 @@ on:
workflow_call:
inputs:
dymension_ci:
description: 'CI run on Dymension Repo'
description: "CI run on Dymension Repo"
required: false
type: string
default: 'latest'
default: "latest"
rollapp_ci:
description: 'CI run on Rollapp Repo'
description: "CI run on Rollapp Repo"
required: false
type: string
default: 'latest'
default: "latest"

jobs:
# e2e-tests-by runs the actual go test command to trigger the test.
e2e-tests:
strategy:
matrix:
tests:
tests:
- "e2e-test-ibc-success"
- "e2e-test-ibc-timeout"
- "e2e-test-ibc-grace-period"
- "e2e-test-eibc-fulfillment"
- "e2e-test-transfer-multi-hop"
fail-fast: false
runs-on: ubuntu-latest
steps:
Expand All @@ -47,5 +48,5 @@ jobs:
- name: E2E Tests
run: make ${{ matrix.tests }}
env:
DYMENSION_CI: ${{ inputs.dymension_ci }}
ROLLAPP_CI: ${{ inputs.rollapp_ci }}
DYMENSION_CI: ${{ inputs.dymension_ci }}
ROLLAPP_CI: ${{ inputs.rollapp_ci }}
1 change: 1 addition & 0 deletions .github/workflows/e2e_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
- "e2e-test-ibc-timeout"
- "e2e-test-ibc-grace-period"
- "e2e-test-eibc-fulfillment"
- "e2e-test-transfer-multi-hop"
fail-fast: false
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 4242d31

Please sign in to comment.