coin_cbc 0.1.8

Rust bindings to the CoinOR CBC MILP Solveur using the C API.
Documentation
name: Rust

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  build:
    strategy:
      matrix:
        include:
          - {os: ubuntu-latest, flags: "--all-features" }
          - {os: ubuntu-18.04, flags: "" }
    runs-on: ${{ matrix.os }}

    steps:
    - uses: actions/checkout@v2
    - name: Prepare dependencies
      run: sudo apt-get install coinor-libcbc-dev
    - name: Build
      run: cargo build --verbose --all
    - name: Run tests
      run: cargo test --verbose --all ${{ matrix.flags }}