Skip to content

Bump github.com/docker/docker from 25.0.5+incompatible to 25.0.6+incompatible in the go_modules group across 1 directory #244

Bump github.com/docker/docker from 25.0.5+incompatible to 25.0.6+incompatible in the go_modules group across 1 directory

Bump github.com/docker/docker from 25.0.5+incompatible to 25.0.6+incompatible in the go_modules group across 1 directory #244

name: contracts-forge-tests
on:
push:
branches:
- master
pull_request:
jobs:
Test:
name: Contracts Forge Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Install forge dependencies
run: forge install
working-directory: ./contracts
- name: Run tests
run: forge test -vvv
working-directory: ./contracts
- name: Enforce Formatting
run: forge fmt --check
working-directory: ./contracts