Capture complete EIP-4844 blob tx with side car blobs on EL #449
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: build-test | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "main" | |
- "develop" | |
jobs: | |
audit: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.21.4 | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Verify dependencies | |
run: go mod verify | |
- name: Build all | |
run: make all | |
- name: Run tests | |
run: make test | |
- name: Upload coverage to Codecov | |
run: bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_TOKEN }} | |
- name: Clean | |
run: make clean |