Skip to content

Update Cargo.toml

Update Cargo.toml #63

Workflow file for this run

name: check
on:
push:
branches:
- "*"
tags:
- "*"
jobs:
build:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: clippy, rustfmt
- name: Check format
run: cargo fmt --all -- --check
- name: Check fix
run: cargo fix && cargo fix
- name: Check with clippy
run: cargo clippy --all -- -D warnings
- name: Build Release
run: cargo build --release
- name: Run tests
run: cargo test
- name: Run tests without default features.
run: cargo test --no-default-features
- name: Run examples with deserialize_duration
run: cargo run --example deserialize_duration
- name: Run examples with deserialize_duration_chrono
run: cargo run --example deserialize_duration_chrono
# build on nightly
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- name: Build on nightly
run: cargo build --release