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
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,33 @@ $ go install .

or do `go build .` and run from the repository like `./builder-playground`.

## CI / GitHub Actions

Use [`flashbots/builder-playground-action`](https://github.com/flashbots/builder-playground-action) to spin up devnets in your CI pipelines:

```yaml
- name: Start Builder Playground
uses: flashbots/builder-playground-action@v1
with:
recipe: l1

- name: Run tests
run: |
# Your tests here
```

You can also use a custom recipe file and pin a specific version:

```yaml
- name: Start Builder Playground
uses: flashbots/builder-playground-action@v1
with:
version: v1.0.0
recipe: ./configs/my-recipe.yaml
```

See the [builder-playground-action README](https://github.com/flashbots/builder-playground-action) for full documentation.

## Getting started

See the available recipes from the `recipes` command:
Expand Down