Skip to content

refactor: extract precompile gas from CALL overhead and emit synthetic frame #159

refactor: extract precompile gas from CALL overhead and emit synthetic frame

refactor: extract precompile gas from CALL overhead and emit synthetic frame #159

Workflow file for this run

name: go-test
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
unit-tests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- uses: ./.github/workflows/go-setup
- name: Run unit tests
run: go test -race -json ./... > test.json
- name: Annotate tests
if: always()
uses: guyarb/golang-test-annotations@9ab2ea84a399d03ffd114bf49dd23ffadc794541 # v0.6.0
with:
test-results: test.json
integration-tests:
name: Integration Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- uses: ./.github/workflows/go-setup
- name: Run integration tests
run: go test -race -tags=integration -json ./... > test.json
- name: Annotate tests
if: always()
uses: guyarb/golang-test-annotations@9ab2ea84a399d03ffd114bf49dd23ffadc794541 # v0.6.0
with:
test-results: test.json