Skip to content

feat: Adds Modexp function for modular exponentiation support in the … #2

feat: Adds Modexp function for modular exponentiation support in the …

feat: Adds Modexp function for modular exponentiation support in the … #2

Workflow file for this run

name: Tests
on: [push]
jobs:
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: Install Huff
uses: huff-language/huff-toolchain@v2
with:
version: nightly
- name: Run Tests
run: forge test -vvv
env:
RPC_URL: ${{ secrets.RPC_URL }}
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}