Skip to content

Commit

Permalink
github/workflows: enable Ethereum client test
Browse files Browse the repository at this point in the history
  • Loading branch information
minh-bq committed Aug 12, 2024
1 parent 226057a commit cc9b3c3
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/client-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Ethereum client test

on:
push:
branches:
- blob-tx-tests

concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: 'Checkout Repo with submodules'
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c #v3.3.0
with:
submodules: true

- name: 'Setup Go'
uses: actions/setup-go@v5
with:
go-version: '1.20.10'

- name: 'Run state tests'
run: cd tests && go test -test.v -run=TestState > ./log_file

- name: 'Grep failed tests'
run: grep "FAIL" ./log_file

0 comments on commit cc9b3c3

Please sign in to comment.