Skip to content

Add module to invoke a command with piped stdin and stdout. #228

Add module to invoke a command with piped stdin and stdout.

Add module to invoke a command with piped stdin and stdout. #228

Workflow file for this run

name: Test
on: [ push, workflow_dispatch ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Cache Cargo
uses: Swatinem/rust-cache@v1.3.0
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --verbose --all-features
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose --all-features
env:
RUST_BACKTRACE: 1