plotters-iced 0.1.0

Iced backend for Plotters
Documentation
name: Test and Build

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

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-latest, windows-latest, macOS-latest]
        rust: [stable, beta]
    steps:
    - uses: actions/checkout@v2
    - name: Install Rust toolchain
      uses: actions-rs/toolchain@v1
      with:
         toolchain: ${{ matrix.rust }}
         components: rustfmt
         override: true
    #- name: Install build deps
    #  run: sudo apt-get install gperf libfreetype-dev libX11 libXcursor libXrandr libXi
    - name: Verify versions
      run: rustc --version && rustup --version && cargo --version
    - name: Cargo Build
      run: cargo build --verbose
    - name: Build example
      run: cargo build --example cpu-monitor
    - name: Run tests
      run: cargo test --verbose
    - name: Check code style
      run: cargo fmt -- --check