Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,17 @@ jobs:
with:
python-version: '3.13'

# As a sanity check, ensure tests pass
# Ensure minimal tests pass
- name: Run tests for minimal
run: make test preset=minimal
run: |
cd consensus-specs
make test preset=minimal

# Ensure mainnet tests pass
- name: Run tests for mainnet
run: make test preset=mainnet
run: |
cd consensus-specs
make test preset=mainnet

# Add support for large files
- name: Install Git LFS
Expand Down