Skip to content

Bump env_logger from 0.11.1 to 0.11.2 #164

Bump env_logger from 0.11.1 to 0.11.2

Bump env_logger from 0.11.1 to 0.11.2 #164

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