Initial commit

Lays out directory structure start specifing core interfaces.
This commit is contained in:
kayibal
2023-10-31 10:15:20 +00:00
parent 749bfdddaf
commit 51312525c1
6 changed files with 10 additions and 60 deletions

View File

@@ -1,34 +0,0 @@
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: |
forge --version
forge build --sizes
id: build
- name: Run Forge tests
run: |
forge test -vvv
id: test