Multibuild #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v4" | |
- name: "Install Bun" | |
uses: "oven-sh/setup-bun@v1" | |
- name: "Install the Node.js dependencies" | |
run: "bun install --frozen-lockfile" | |
- name: "Check that the project can be built with multiple Solidity versions" | |
uses: "PaulRBerg/foundry-multibuild@v1" | |
with: | |
min: "0.8.22" | |
max: "0.8.26" | |
skip-test: "true" |