Skip to content
Open
Show file tree
Hide file tree
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
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,19 @@ jobs:
- name: Run Foundry tests
run: forge test -vvv --gas-report

# ---------------------------------------------------------------------------
# Release finalizer: shell unit tests (standalone, no deps)
# ---------------------------------------------------------------------------

release-finalizer:
name: Release Finalizer
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3

- name: Run finalize-release shell tests
run: make test-finalize-release

# ---------------------------------------------------------------------------
# Docker Images
# ---------------------------------------------------------------------------
Expand Down
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,11 @@ test-all: test-it test-unit-contract ## Run all tests
@echo running all tests...
make smoke LAUNCH_ARGS="--frozen --healthy-retry=130"

.PHONY: test-finalize-release
test-finalize-release: ## Run release finalizer shell tests
@echo running finalize-release tests...
@bash .github/scripts/test-finalize-release.sh

.PHONY: cov-unit
cov-unit: genesis ## Run unit tests with coverage
rm -f $(COV_FILE)
Expand Down