Skip to content

fix: changelog to chainlog #162

fix: changelog to chainlog

fix: changelog to chainlog #162

Workflow file for this run

name: test
on:
push:
branches:
- master
pull_request:
branches:
- "**"
env:
FOUNDRY_PROFILE: ci
jobs:
check:
name: Foundry project
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: Run Forge build (solc 0.6.x)
env:
FOUNDRY_PROFILE: 0_6_x
run: |
forge build --sizes
id: build_0_6_x
- name: Run Forge build (default)
run: |
forge build --sizes
id: build
- name: Run Forge tests
run: |
forge test -vvv
id: test