foundry-template/.github/workflows/ci.yml

88 lines
2.1 KiB
YAML
Raw Normal View History

2022-07-16 11:36:29 +00:00
name: "CI"
env:
ALCHEMY_API_KEY: ${{ secrets.ALCHEMY_API_KEY }}
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }}
2022-07-16 11:36:29 +00:00
FOUNDRY_PROFILE: "ci"
INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }}
MNEMONIC: ${{ secrets.MNEMONIC }}
2022-07-16 11:36:29 +00:00
on:
workflow_dispatch:
2022-07-16 11:36:29 +00:00
pull_request:
push:
branches:
- "main"
jobs:
lint:
2022-07-16 11:36:29 +00:00
runs-on: "ubuntu-latest"
steps:
- name: "Check out the repo"
uses: "actions/checkout@v3"
- name: "Install Node.js"
uses: "actions/setup-node@v3"
with:
cache: "yarn"
2022-10-15 19:30:41 +00:00
node-version: "lts/*"
2022-07-16 11:36:29 +00:00
- name: "Install the Node.js dependencies"
run: "yarn install --immutable"
- name: "Lint the contracts"
run: "yarn lint"
- name: "Add lint summary"
run: |
echo "## Lint result" >> $GITHUB_STEP_SUMMARY
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY
build:
runs-on: "ubuntu-latest"
steps:
- name: "Check out the repo"
uses: "actions/checkout@v3"
with:
submodules: "recursive"
- name: "Install Foundry"
uses: "foundry-rs/foundry-toolchain@v1"
- name: "Build the contracts and print their size"
run: "forge build --sizes"
- name: "Add build summary"
run: |
echo "## Build result" >> $GITHUB_STEP_SUMMARY
2022-07-16 11:36:29 +00:00
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY
test:
needs: ["lint", "build"]
runs-on: "ubuntu-latest"
steps:
- name: "Check out the repo"
uses: "actions/checkout@v3"
with:
submodules: "recursive"
- name: "Install Foundry"
uses: "foundry-rs/foundry-toolchain@v1"
2022-07-16 11:36:29 +00:00
- name: "Show the Foundry config"
run: "forge config"
- name: "Generate a fuzz seed that changes weekly to avoid burning through RPC allowance"
run: >
echo "FOUNDRY_FUZZ_SEED=$(
echo $(($EPOCHSECONDS - $EPOCHSECONDS % 604800))
)" >> $GITHUB_ENV
2022-07-16 11:36:29 +00:00
- name: "Run the tests"
run: "forge test"
- name: "Add test summary"
run: |
echo "## Tests result" >> $GITHUB_STEP_SUMMARY
2022-07-16 11:36:29 +00:00
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY