Skip to content

Bugfix for transaction construction #126

Bugfix for transaction construction

Bugfix for transaction construction #126

Workflow file for this run

name: Run integration tests
on:
pull_request:
branches: ["*"]
jobs:
integration-tests:
name: Integration tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Rust
id: toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Clippy check
timeout-minutes: 30
run: cargo clippy --all-targets --all-features -- -Dwarnings
- name: Run integration tests
timeout-minutes: 30
run: cargo test --release -- --test-threads=1