Skip to content

Commit

Permalink
ci: foundry multibuild workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulRBerg committed Jan 1, 2024
1 parent 1a9e990 commit e3ebf94
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/multibuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: "Multibuild"

on:
workflow_dispatch:
schedule:
- cron: "0 3 * * 0" # at 3:00am UTC every Sunday

jobs:
multibuild:
runs-on: "ubuntu-latest"
steps:
- name: "Check out the repo"
uses: "actions/checkout@v3"

- name: "Install Bun"
uses: "oven-sh/setup-bun@v1"

- name: "Install the Node.js dependencies"
run: "bun install"

- name: "Check that V2 Periphery can be built with multiple Solidity versions"
uses: "PaulRBerg/foundry-multibuild@v1"
with:
min: "0.8.19"
max: "0.8.23"

0 comments on commit e3ebf94

Please sign in to comment.