esplora-tapyrus 0.5.8

An efficient re-implementation of Electrum Server in Rust
Documentation
name: Rust

on: [push, pull_request]

jobs:
  build:

    runs-on: ubuntu-latest
    env:
      CARGO_INCREMENTAL: 1

    steps:
      - name: Checkout
        uses: actions/checkout@v4
      - name: Set up cargo cache
        uses: actions/cache@v4
        with:
          path: |
            ~/.cargo/bin/
            ~/.cargo/registry/index/
            ~/.cargo/registry/cache/
            ~/.cargo/git/db/
            target/
          key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
      - name: Build
        run: cargo build --release
      - name: Run tests
        run: cargo test --verbose