Skip to content

chore(deps): bump plotters from 0.3.6 to 0.3.7 #430

chore(deps): bump plotters from 0.3.6 to 0.3.7

chore(deps): bump plotters from 0.3.6 to 0.3.7 #430

Workflow file for this run

on: [push]
name: CI
jobs:
build_and_test:
name: Test Rust
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Cache target
uses: actions/cache@v2
env:
cache-name: cache-default-target-and-lockfile
with:
path: |
target
Cargo.lock
~/.rustup
key: ${{ env.cache-name }}-${{ hashFiles('**/Cargo.toml') }}
- run: cargo build --all-features
- run: cargo test
- run: cargo clippy -- -Dwarnings