[Common] change algebraFeeRecipient address in deployment script #99
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 Periphery | |
on: | |
push: | |
branches: | |
- master | |
- staged | |
pull_request: | |
branches: | |
- master | |
jobs: | |
UnitAsserts: | |
strategy: | |
matrix: | |
testName: | |
- TickLensEchidnaTest | |
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/periphery | |
- name: Run ${{ matrix.testName }} | |
uses: crytic/echidna-action@v2 | |
with: | |
solc-version: 0.8.20 | |
files: ./src/periphery/ | |
contract: ${{ matrix.testName }} | |
crytic-args: --hardhat-ignore-compile | |
solc-args: --evm-version paris | |
config: ./src/periphery/contracts/test/echidna/echidna.config.yml |