Skip to content

Add support for maxfeerate and maxburnamount to sendrawtransaction #19

Add support for maxfeerate and maxburnamount to sendrawtransaction

Add support for maxfeerate and maxburnamount to sendrawtransaction #19

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
defaults:
run:
shell: bash
env:
RUSTFLAGS: --deny warnings
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Rust Toolchain Components
uses: actions-rs/toolchain@v1
with:
components: clippy, rustfmt
override: true
toolchain: stable
- uses: Swatinem/rust-cache@v2
- name: Clippy
run: cargo clippy --all --all-targets
- name: Format
run: cargo fmt --all -- --check
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Rust Toolchain Components
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.79.0
- uses: Swatinem/rust-cache@v2
- name: Unit Tests
run: cargo test --all
- name: Integration Tests
env:
BITCOINVERSION: 0.21.0
run: ./contrib/integration_test.sh