Skip to content

Build(deps): Bump chrono from 0.4.31 to 0.4.32 #57

Build(deps): Bump chrono from 0.4.31 to 0.4.32

Build(deps): Bump chrono from 0.4.31 to 0.4.32 #57

Workflow file for this run

name: Rust
on:
push:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cargo caching
uses: actions/cache@v2
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose