Skip to content

Commit

Permalink
Add github actions step for executing web3 tests using transaction ex…
Browse files Browse the repository at this point in the history
…ecutor (#10064)

 This PR adds new github actions step that executes the web3 tests using the new implementation for transaction executor.

---------

Signed-off-by: Nikolay Nikolov <[email protected]>
  • Loading branch information
nickeynikolovv authored Jan 9, 2025
1 parent e9f177b commit bfc9183
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,15 @@ jobs:
SPRING_PROFILES_ACTIVE: ${{ matrix.schema}}
run: ./gradlew :${{matrix.project}}:build --scan ${{ secrets.GRADLE_ARGS }}

- name: Execute Gradle using transaction executor
if: ${{ matrix.project == 'web3' && matrix.schema == 'v1'}}
continue-on-error: true
env:
MIRROR_NODE_SCHEMA: ${{ matrix.schema}}
SPRING_PROFILES_ACTIVE: ${{ matrix.schema}}
HEDERA_MIRROR_WEB3_EVM_MODULARIZEDSERVICES: "true"
run: ./gradlew :${{ matrix.project }}:build --scan ${{ secrets.GRADLE_ARGS }}

- name: Upload coverage report
uses: codecov/codecov-action@1e68e06f1dbfde0e4cefc87efeba9e4643565303 # v5.1.2
env:
Expand Down

0 comments on commit bfc9183

Please sign in to comment.