Skip to content

Update to gmpv3

Update to gmpv3 #130

Workflow file for this run

name: CI
on:
pull_request:
env:
FOUNDRY_PROFILE: ci
SEPOLIA_RPC_URL: ${{ secrets.SEPOLIA_RPC_URL }}
jobs:
check:
name: Foundry project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Show Forge version
run: |
forge --version
- name: Run Forge fmt
run: |
forge fmt --check
- name: Run Forge build
run: |
forge build --sizes
- name: Run Forge tests
run: |
forge test -vvv --junit > report.xml
- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
if: success() || failure()
with:
report_paths: 'report.xml'