Skip to content

Update README example using Rust 2018 #39

Update README example using Rust 2018

Update README example using Rust 2018 #39

Workflow file for this run

on: [push, pull_request]
name: Rust Tests
jobs:
test:
name: Test ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["macos-latest", "ubuntu-latest", "windows-latest"]
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Run cargo test
run: cargo test --all-targets --all-features