Integral v1.2 #120
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: Echidna Farming | |
on: | |
push: | |
branches: | |
- master | |
- staged | |
pull_request: | |
branches: | |
- master | |
jobs: | |
UnitAsserts: | |
strategy: | |
matrix: | |
testName: | |
- EternalVirtualPoolEchidnaTest | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm run ci-install | |
- name: Compile contracts | |
run: npm run compile | |
working-directory: ./src/farming | |
- name: Run ${{ matrix.testName }} | |
uses: crytic/echidna-action@v2 | |
with: | |
solc-version: 0.8.20 | |
files: ./src/farming/ | |
contract: ${{ matrix.testName }} | |
crytic-args: --hardhat-ignore-compile | |
solc-args: --evm-version paris | |
config: ./src/farming/contracts/test/echidna/echidna.config.yml |