Files
tycho-protocol-sdk/.github/workflows/test.yml
kayibal 82c815fdf2 Restructure repository file structure.
Adds an outer layer to hold docs, cairo contracts
and other related files.
2023-11-01 01:09:17 +00:00

37 lines
620 B
YAML

name: test
on: workflow_dispatch
env:
FOUNDRY_PROFILE: ci
jobs:
check:
strategy:
fail-fast: true
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
run: |
cd evm
forge --version
forge build --sizes
id: build
- name: Run Forge tests
run: |
cd evm
forge test -vvv
id: test