Skip to content

Make moves generic and add alternative and mixed moves. #46

Make moves generic and add alternative and mixed moves.

Make moves generic and add alternative and mixed moves. #46

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