Skip to content

feat(trusted-relayer): store relayers in iterable map #10

feat(trusted-relayer): store relayers in iterable map

feat(trusted-relayer): store relayers in iterable map #10

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
test:
name: Cargo Test
runs-on: warp-ubuntu-2204-x64-16x
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install stable toolchain
run: |
rustup toolchain install stable --profile minimal
rustup target add wasm32-unknown-unknown
- name: Cache cargo registry & build
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-test-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-test-
- name: Run tests
run: cargo test --workspace