Skip to content

chore(deps): update rust crate chrono to 0.4.38 - autoclosed #280

chore(deps): update rust crate chrono to 0.4.38 - autoclosed

chore(deps): update rust crate chrono to 0.4.38 - autoclosed #280

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Lint
run: cargo clippy --all-features --all -- -D clippy::all -D warnings
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose