Skip to content

Update README.md

Update README.md #112

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Run Forge build
run: |
cd contracts
forge --version
forge build --sizes
- name: Run Contract Tests
run: |
cd contracts
forge test -vvv
- name: Build Node
run: cd node && cargo build --verbose
- name: Run Node tests
run: cd node && cargo test --verbose