Testing contracts #487
Workflow file for this run
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: ci-test | |
run-name: Testing contracts | |
env: | |
RPC_URL_MAINNET: ${{ secrets.RPC_URL_MAINNET }} | |
RPC_URL_GOERLI: ${{ secrets.RPC_URL_GOERLI }} | |
RPC_URL_OPTIMISM: ${{ secrets.RPC_URL_OPTIMISM }} | |
RPC_URL_ARBITRUM: ${{ secrets.RPC_URL_ARBITRUM }} | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- "master" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
# lint: | |
# 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: "Install Node.js" | |
# uses: "actions/setup-node@v3" | |
# with: | |
# cache: "yarn" | |
# node-version: "lts/*" | |
# - 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 | |
test-core: | |
name: Test core | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- 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 | |
- name: "Install Node.js" | |
uses: "actions/setup-node@v3" | |
with: | |
cache: "yarn" | |
node-version: "lts/*" | |
- name: Test core | |
env: | |
CHECK_CONSTANTS: true | |
CHECK_STORAGE_LAYOUTS: true | |
CHECK_LEDGER_PURITY: true | |
CHECK_FORGE_TESTS: true | |
CHECK_COVERAGE: true | |
run: | | |
cd "${GITHUB_WORKSPACE}/core" | |
echo "## Testing core" >> $GITHUB_STEP_SUMMARY | |
./test.sh | |
test-periphery: | |
name: Test periphery | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- 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 | |
- name: Test periphery | |
run: | | |
cd "${GITHUB_WORKSPACE}/periphery" | |
echo "## Testing periphery" >> $GITHUB_STEP_SUMMARY | |
forge test |