Skip to content

update env_logger to 0.10.0 #9

update env_logger to 0.10.0

update env_logger to 0.10.0 #9

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build_and_test:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- name: Build
run: cargo build
- name: Test
run: cargo test
- name: Clippy
run: cargo clippy
- name: Rustfmt
run: cargo fmt --check