Skip to content

chore(deps): bump follow-redirects from 1.15.5 to 1.15.6 #31

chore(deps): bump follow-redirects from 1.15.5 to 1.15.6

chore(deps): bump follow-redirects from 1.15.5 to 1.15.6 #31

Workflow file for this run

name: tests
on:
workflow_dispatch:
pull_request:
push:
branches:
- "**"
env:
FOUNDRY_PROFILE: ci
jobs:
check:
strategy:
fail-fast: true
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: Run Forge build
run: |
forge --version
forge build --sizes
id: build
- name: Run Forge tests
run: |
export PROVIDER_URI_SEPOLIA=${{ secrets.PROVIDER_URI_SEPOLIA }}
forge test -vvvv
id: test