fix: reject BlobTxs larger than 2 MiB (#4084) #1921
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: 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 | ||
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 |