fix(dex): solve token left in dex contract issue #16
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 | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- "**" | |
env: | |
FOUNDRY_PROFILE: ci | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install Foundry | |
uses: onbjerg/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Run forge fmt | |
run: forge fmt --check | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install Foundry | |
uses: onbjerg/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Create .env file | |
uses: SpicyPizza/[email protected] | |
with: | |
envkey_MNEMONIC: ${{ secrets.MNEMONIC }} | |
envkey_ALCHEMEY_KEY: ${{ secrets.ALCHEMEY_KEY }} | |
envkey_ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }} | |
file_name: .env | |
fail_on_empty: true | |
- name: Run tests | |
run: forge test --gas-report | |
- name: Run Coverage | |
run: forge coverage --report lcov | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
directory: . | |
env_vars: OS,PYTHON | |
fail_ci_if_error: true | |
files: ./lcov.info | |
name: harvest-ul-mainnet-coverage | |
verbose: true |