Skip to content

fix a lot of Clippy lints #29

fix a lot of Clippy lints

fix a lot of Clippy lints #29

Workflow file for this run

name: tests
on: [push]
jobs:
test:
name: Rust ${{ matrix.rust_version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
rust_version: [stable, beta, nightly]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust_version }}
override: true
- run: cargo test
- name: test duct_sh
run: cargo test
working-directory: ./duct_sh