Skip to content

utils: Set default log level to error and use RUST_LOG to overwrite it. #83

utils: Set default log level to error and use RUST_LOG to overwrite it.

utils: Set default log level to error and use RUST_LOG to overwrite it. #83

Workflow file for this run

name: Code Checks
on: [push]
env:
CARGO_TERM_COLOR: always
jobs:
formatting:
name: Check formatting
runs-on: ubicloud-standard-4
steps:
- uses: actions/checkout@v4
- name: Run Cargo fmt
run: cargo fmt --check
linting:
name: Check linting
runs-on: ubicloud-standard-4
steps:
- uses: actions/checkout@v4
- name: Run Cargo clippy
run: cargo clippy --no-deps -- -Dwarnings