CI: Aderyn Analysis #86
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: Post Check | |
on: | |
push: | |
branches: | |
- mainnet | |
- testnet | |
- "feature/*" | |
- "features/*" | |
- "feat/*" | |
- "feats/*" | |
pull_request: | |
branches: | |
- mainnet | |
- testnet | |
- "feature/*" | |
- "features/*" | |
- "feat/*" | |
- "feats/*" | |
- "release/*" | |
env: | |
FOUNDRY_PROFILE: ci | |
jobs: | |
check: | |
strategy: | |
fail-fast: true | |
name: Foundry project | |
runs-on: ubuntu-latest | |
env: | |
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }} | |
INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly-2b1f8d6dd90f9790faf0528e05e60e573a7569ce | |
- name: Update package with soldeer | |
run: forge soldeer update | |
- name: Recursively update dependencies | |
run: | | |
chmod +x ./update-deps.sh | |
./update-deps.sh | |
id: update-deps | |
- name: Run Forge build | |
run: | | |
forge --version | |
forge build | |
id: build | |
- name: Run PostCheck CI | |
run: | | |
./run.sh PostCheckCI -f ronin-mainnet -vvvv | |
id: postcheck |