Skip to content

Bump serde from 1.0.200 to 1.0.201 #401

Bump serde from 1.0.200 to 1.0.201

Bump serde from 1.0.200 to 1.0.201 #401

Workflow file for this run

on: [push, pull_request]
name: test
jobs:
test:
name: Test Suite
runs-on: ubuntu-latest
strategy:
matrix:
client:
- async
- sync
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
uses: actions-rs/cargo@v1
with:
command: test
args: --tests --lib --no-default-features --features=${{ matrix.client }}