ln-types 0.2.1

Common types related to Lightning Network
Documentation
name: Test and Build

on: [push, pull_request]

jobs:
  test-lib:
    runs-on: ubuntu-20.04
    strategy:
      fail-fast: false
      matrix:
        rust: [stable, nightly, 1.56.1]

    steps:
      - uses: actions/checkout@v2
      - uses: Swatinem/rust-cache@v1.2.0
      - name: Pin postgres-types
        run: cargo update --precise 0.2.2 -p postgres-types
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: ${{ matrix.rust }}
          override: true
      - name: test-all-features
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --features=postgres-types,node_pubkey_verify,node_pubkey_recovery,secp256k1_std,serde_alloc,slog_std,bitcoin-units,parse_arg
      - name: test-default-features
        uses: actions-rs/cargo@v1
        with:
          command: test
      - name: test-no-features
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --no-default-features
      - name: test-feature-alloc
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --no-default-features --features=alloc
      - name: test-feature-postgres-types
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --no-default-features --features=postgres-types
      - name: test-feature-node_pubkey_verify
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --no-default-features --features=node_pubkey_verify
      - name: test-feature-node_pubkey_recovery
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --no-default-features --features=node_pubkey_recovery
      - name: test-feature-bitcoin-units
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --no-default-features --features=bitcoin-units
      - name: test-feature-serde
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --no-default-features --features=serde
      - name: test-feature-serde-alloc
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --no-default-features --features=serde_alloc
      - name: test-feature-parse_arg
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --no-default-features --features=parse_arg
      - name: test-feature-secp256k1
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --no-default-features --features=secp256k1
      - name: test-feature-secp256k1-std
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --no-default-features --features=secp256k1_std
      - name: test-feature-slog
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --no-default-features --features=slog
      - name: test-feature-slog-std
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --no-default-features --features=slog_std
      - name: test-compat-slog-std
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --no-default-features --features=slog,std
      - name: test-compat-serde-std
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --no-default-features --features=serde,std
      - name: test-compat-serde-alloc
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --no-default-features --features=serde,alloc
      - name: test-compat-secp256k1-std
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --no-default-features --features=secp256k1,std