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: 12 additions & 0 deletions src/pages/sdk/foundry/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,18 @@ Tempo's contract verifier is Sourcify-compatible. Configure verification with `V

The `[etherscan]` table in `foundry.toml` is for Etherscan-style verifiers, not Tempo's verifier.

### Using `foundry-toolchain` in your CI

Use the [`foundry-toolchain`](https://github.com/foundry-rs/foundry-toolchain) GitHub Action to install Foundry in your CI.
Tempo support is included in Foundry, so no special configuration is needed.

```yaml
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
```

## Use Foundry for your workflows

All standard Foundry commands are supported out of the box.
Expand Down
Loading