Skip to content

✨ Added fuzz command to CLI #3

✨ Added fuzz command to CLI

✨ Added fuzz command to CLI #3

Workflow file for this run

on:
workflow_dispatch:
pull_request:
push:
name: Test Escrow and Turnstile
env:
SOLANA_CLI_VERSION: 1.16.6
ANCHOR_VERSION: 0.28.0
jobs:
run_examples:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-rust/
- uses: ./.github/actions/setup-solana/
- uses: ./.github/actions/setup-anchor/
id: rust-setup
- uses: Swatinem/rust-cache@v2
name: Cache Rust and it's packages
- name: Cargo build
run: cargo build --release
- name: Cargo fmt
run: cargo fmt -- --check
- name: Cargo clippy
run: cargo clippy -- -D warnings
- name: Build Escrow
working-directory: examples/escrow
run: anchor build
- name: Test Escrow
working-directory: examples/escrow
run: ../../target/release/trdelnik test
- name: Build Turnstile
working-directory: examples/turnstile
run: anchor build
- name: Test Turnstile
working-directory: examples/turnstile
run: ../../target/release/trdelnik test