Skip to content

feat: loss liquidator #820

feat: loss liquidator

feat: loss liquidator #820

Workflow file for this run

name: Check PR
on:
pull_request:
types: [opened, reopened, synchronize]
env:
HUSKY: 0
CI: true
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Compile contracts
run: forge build
- name: Run unit tests
run: forge test --mt test_U
timeout-minutes: 10
- name: Run integration tests
run: forge test --mt test_I
timeout-minutes: 10
- name: Run gas tests
run: forge test --mt test_G -vv