vampirc-uci 0.11.1

A Universal Chess Interface (UCI) protocol parser and serializer. Part of the Vampirc chess suite.
Documentation
name: Rust

on:
  push:
    branches:
      - "*"
  pull_request:
    branches:
      - "*"

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Build
      run: cargo build --verbose
    - name: Run tests
      run: cargo test --verbose
    - name: Clean
      run: cargo clean
    - name: Build and run with chess crate
      run: cargo test --verbose --features chess