pwner 0.1.8

Pwner is a Process Owner crate that allows ergonomic access to child processes
Documentation
name: build

on: [push]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v1
      - name: Prepare
        uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
          components: clippy, rustfmt
          override: true
      - name: Format
        uses: actions-rs/cargo@v1
        with:
          command: fmt
          args: --all -- --check
      - name: Build
        uses: actions-rs/cargo@v1
        with:
          command: build
          args: --verbose --workspace --all-targets --all-features
      - name: Build examples
        uses: actions-rs/cargo@v1
        with:
          command: build
          args: --verbose --workspace --examples
      - name: Lint
        uses: actions-rs/clippy-check@v1
        with:
          token: ${{ secrets.GITHUB_TOKEN }}
          args: --verbose --workspace --all-targets --all-features
      - name: Lint examples
        uses: actions-rs/clippy-check@v1
        with:
          token: ${{ secrets.GITHUB_TOKEN }}
          args: --verbose --workspace --examples
      - name: Test
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --verbose --workspace --all-targets --all-features --no-fail-fast -- --nocapture