Full flow example (#90)

* expose params & structs for external usage

* add full_flow example, move examples into 'examples' dir
This commit is contained in:
2024-04-26 08:37:49 +02:00
committed by GitHub
parent 97df224579
commit 9bbdfc5a85
16 changed files with 270 additions and 26 deletions

View File

@@ -79,6 +79,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
- name: Download solc
run: |
curl -sSfL https://github.com/ethereum/solidity/releases/download/v0.8.4/solc-static-linux -o /usr/local/bin/solc
chmod +x /usr/local/bin/solc
- name: Run examples tests
run: cargo test --examples
- name: Run examples