Skip to content

Add usage of SimplicityNetwork type in code #210

Add usage of SimplicityNetwork type in code

Add usage of SimplicityNetwork type in code #210

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
workflow_call:
permissions:
contents: read
jobs:
test:
name: Build and test (matrix)
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
toolchain: ["1.90.0", "stable"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Rust ${{ matrix.toolchain }}
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
- name: Cache cargo
uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: Build
run: cargo build --workspace --all-features --verbose
- name: Test
run: cargo test --workspace --all-features --no-fail-fast --verbose