fix: wrong hbar values assigned to Gas Limit, Gas Used, and Gas Consumed #1528
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "PR Checks" | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
defaults: | |
run: | |
shell: bash | |
permissions: | |
contents: read | |
packages: write | |
checks: write | |
issues: read | |
pull-requests: write | |
concurrency: | |
group: pr-checks-${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Code | |
uses: ./.github/workflows/comp-compile-explorer-code.yaml | |
secrets: | |
access-token: ${{ secrets.GITHUB_TOKEN }} | |
unit-tests: | |
name: Unit Tests | |
uses: ./.github/workflows/comp-compile-explorer-code.yaml | |
with: | |
custom-job-label: Standard | |
enable-unit-tests: true | |
secrets: | |
access-token: ${{ secrets.GITHUB_TOKEN }} | |
e2e-tests: | |
name: E2E Tests | |
uses: ./.github/workflows/comp-compile-explorer-code.yaml | |
with: | |
custom-job-label: Standard | |
enable-e2e-tests: true | |
secrets: | |
access-token: ${{ secrets.GITHUB_TOKEN }} | |
sonar-analysis: | |
name: Sonar Analysis | |
uses: ./.github/workflows/comp-compile-explorer-code.yaml | |
with: | |
custom-job-label: Standard | |
enable-sonar-analysis: true | |
secrets: | |
access-token: ${{ secrets.GITHUB_TOKEN }} | |
sonar-token: ${{ secrets.SONAR_TOKEN }} |