Skip to content

fix πŸ›: Fix for shell scripts & updated README #72

fix πŸ›: Fix for shell scripts & updated README

fix πŸ›: Fix for shell scripts & updated README #72

Workflow file for this run

name: Solidity
on:
push:
branches:
- master
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Install deps
working-directory: contracts
run: forge install
- name: Check fmt
working-directory: contracts
run: forge fmt --check
- name: Run Forge build
working-directory: contracts
run: |
forge --version
forge build --sizes
id: build
- name: Run Forge tests
working-directory: contracts
run: |
forge test -vvv
id: test