Use asset values instead of asset prices in oracle calls #1414
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: Foundry | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} | |
cancel-in-progress: true | |
jobs: | |
forge-test: | |
strategy: | |
fail-fast: true | |
matrix: | |
type: ["slow", "fast"] | |
include: | |
- type: "slow" | |
fuzz-runs: 10000 | |
max-test-rejects: 500000 | |
invariant-runs: 48 | |
invariant-depth: 2048 | |
- type: "fast" | |
fuzz-runs: 256 | |
max-test-rejects: 65536 | |
invariant-runs: 16 | |
invariant-depth: 256 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- name: Run Forge tests in ${{ matrix.type }} mode | |
run: forge test -vvv | |
env: | |
FOUNDRY_FUZZ_RUNS: ${{ matrix.fuzz-runs }} | |
FOUNDRY_FUZZ_MAX_TEST_REJECTS: ${{ matrix.max-test-rejects }} | |
FOUNDRY_INVARIANT_RUNS: ${{ matrix.invariant-runs }} | |
FOUNDRY_INVARIANT_DEPTH: ${{ matrix.invariant-depth }} |