Skip to content

Bump serde from 1.0.201 to 1.0.203 #320

Bump serde from 1.0.201 to 1.0.203

Bump serde from 1.0.201 to 1.0.203 #320

Workflow file for this run

name: Rust
on: [push,pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
rust: [stable, beta, nightly]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
override: true
- name: Run tests
run: cargo test --verbose
- name: Run benchmarks
run: cargo bench