bracket-lib 0.8.1

Meta-crate holding the entirety of bracket-lib (and exposing it). Use this for the full roguelike toolkit experience.
Documentation
name: Rust

on: [push]

jobs:
  build:
    strategy:
      matrix:
        os: [ubuntu-latest, macos-latest, windows-latest]
    runs-on: ${{ matrix.os }}

    steps:
    - uses: actions/checkout@v2
    - name: Build
      run: cargo build --verbose --all
    - name: Run tests
      run: 
        cargo test --verbose --all
    - name: Check benchmarks
      run: cargo check --benches
    - name: Check examples
      if: matrix.os != 'windows-latest'
      run: |

        cargo check --all