Skip to content

Update erased-serde requirement from 0.3 to 0.4 #19

Update erased-serde requirement from 0.3 to 0.4

Update erased-serde requirement from 0.3 to 0.4 #19

Workflow file for this run

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build (all features)
run: cargo clippy --verbose --all-targets --all-features --all -- -D warnings
- name: Build (no features)
run: cargo clippy --verbose --all-targets --no-default-features --all -- -D warnings
- name: Run tests (all features)
run: cargo test --verbose --all --all-features
- name: Run tests (no features)
run: cargo test --verbose --all --no-default-features