Add fuzz tests for Math.sqrt & Math.logX using Foundry (#3676)

Co-authored-by: Hadrien Croubois <hadrien.croubois@gmail.com>
Co-authored-by: Francisco Giordano <frangio.1@gmail.com>
This commit is contained in:
Nicolás Venturo
2022-09-07 12:25:29 -05:00
committed by GitHub
parent c1d6e39aab
commit 80ae402387
7 changed files with 144 additions and 2 deletions

View File

@ -56,6 +56,19 @@ jobs:
with:
token: ${{ github.token }}
foundry-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Run tests
run: forge test -vv
coverage:
if: github.repository != 'OpenZeppelin/openzeppelin-contracts-upgradeable'
runs-on: ubuntu-latest