Skip to content

Updated broken dependencies that were preventing compilation on newer versions of Rust #13

Updated broken dependencies that were preventing compilation on newer versions of Rust

Updated broken dependencies that were preventing compilation on newer versions of Rust #13

Workflow file for this run

name: Rust
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-18.04
strategy:
matrix:
rust:
- 1.52.0
- stable
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
override: true
- name: Run cargo clippy
run: cargo test
- name: Run cargo test
run: cargo test