Skip to content

Commit

Permalink
Merge pull request #250 from sablier-labs/ci/foundry-multibuild
Browse files Browse the repository at this point in the history
ci: foundry multibuild workflow
  • Loading branch information
PaulRBerg authored Jan 1, 2024
2 parents 5d4c866 + 631ed46 commit 1922f92
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 1922f92

Please sign in to comment.