Skip to content

Make the Params trait more generic to isolate it from the move semantics #42

Make the Params trait more generic to isolate it from the move semantics

Make the Params trait more generic to isolate it from the move semantics #42

Workflow file for this run

on: [push]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
components: rustfmt, clippy
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets --all-features -- --deny warnings
- uses: actions-rs/cargo@v1
with:
command: test
args: --all-features