esplora-client 0.5.0

Bitcoin Esplora API client library. Supports plaintext, TLS and Onion servers. Blocking or async
Documentation
name: Rust

on:
  push:
    branches: [ "master" ]
  pull_request:
    branches: [ "master" ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build-test:

    runs-on: ubuntu-latest
    strategy:
      matrix:
        rust:
          - version: 1.65.0 # STABLE
            clippy: true
          - version: 1.57.0 # MSRV
        features:
          - default
          - blocking
          - async
          - async-https
          - async-https-native
          - async-https-rustls
          - async-https-rustls-manual-roots
    steps:
    - uses: actions/checkout@v3
    - name: Generate cache key
      run: echo "${{ matrix.rust.version }} ${{ matrix.features }}" | tee .cache_key
    - name: cache
      uses: actions/cache@v3
      with:
        path: |
          ~/.cargo/registry
          ~/.cargo/git
          target
        key: ${{ runner.os }}-cargo-${{ hashFiles('.cache_key') }}-${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }}
    - name: Set default toolchain
      run: rustup default ${{ matrix.rust.version }}
    - name: Set profile
      run: rustup set profile minimal
    - name: Add clippy
      if: ${{ matrix.rust.clippy }}
      run: rustup component add clippy
    - name: Update toolchain
      run: rustup update
    - name: Build
      run: cargo build --features ${{ matrix.features }} --no-default-features
    - name: Clippy
      if: ${{ matrix.rust.clippy }}
      run: cargo clippy --all-targets --features ${{ matrix.features }} --no-default-features -- -D warnings
    - name: Test
      run: cargo test --features ${{ matrix.features }} --no-default-features