Skip to content

fix: reject BlobTxs larger than 2 MiB (#4084) #1921

fix: reject BlobTxs larger than 2 MiB (#4084)

fix: reject BlobTxs larger than 2 MiB (#4084) #1921

Workflow file for this run

name: test
on:
workflow_call:
jobs:
test-short:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Run tests in short mode
run: make test-short
timeout-minutes: 10
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Run tests
run: make test
test-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Generate coverage.txt
run: make test-coverage
- name: Upload coverage.txt
<<<<<<< HEAD

Check failure on line 44 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 44
uses: codecov/[email protected]
=======
uses: codecov/[email protected]
>>>>>>> 3751aacd (fix: reject BlobTxs larger than 2 MiB (#4084))
with:
file: ./coverage.txt
test-race:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Run tests in race mode
run: make test-race
test-fuzz:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Run fuzz tests
run: make test-fuzz