Skip to content
This repository has been archived by the owner on Apr 30, 2024. It is now read-only.

Feat/optimize ci workflow #379

Feat/optimize ci workflow

Feat/optimize ci workflow #379

Workflow file for this run

name: Foundry CI
on:
pull_request:
branches:
- main
jobs:
# Add job timestamp
print_timestamp:
runs-on: ubuntu-latest
steps:
- name: Generate timestamp
run: |
echo "TIMESTAMP=$(TZ='America/Los_Angeles' date +'%Y-%m-%d %H:%M:%S')" >> $GITHUB_ENV
- name: Print timestamp
run: |
echo "Execution time (Pacific Time Zone) $TIMESTAMP"
foundry-test:
strategy:
fail-fast: true
name: Foundry Unit Test
runs-on: ubuntu-latest
needs: print_timestamp
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
submodules: recursive
fetch-depth: 0
- name: Run install
uses: borales/actions-yarn@v4
with:
cmd: install # will run `yarn install` command
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
# first, build contracts excluding the tests and scripts. Check contract sizes in this step.
# then, build contracts including the tests and scripts. Don't check contract sizes.
- name: Run Forge build
run: |
forge --version
forge build --force --sizes --skip test --skip script
- name: Run Forge tests
run: |
forge test -v --fork-url https://gateway.tenderly.co/public/sepolia --fork-block-number 5196000
- name: Run solhint
run: npx solhint contracts/**/*.sol