Skip to content

Bump chrono from 0.4.31 to 0.4.33 #161

Bump chrono from 0.4.31 to 0.4.33

Bump chrono from 0.4.31 to 0.4.33 #161

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Check out ⬅️
uses: actions/checkout@v2
- name: Install stable Rust 🦀
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Check code format 💄
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
- name: Check code style 👮
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -Dwarnings
- name: Run tests 🔎
uses: actions-rs/cargo@v1
with:
command: test