Skip to content

log: append rather than truncate #253

log: append rather than truncate

log: append rather than truncate #253

Workflow file for this run

name: lint
on:
push:
branches:
- main
- ci
pull_request:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
lint-stable:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: clippy, rust-src
- name: Run clippy
run: |
cargo clippy --all-targets --workspace -- --deny warnings
lint-nightly:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
components: rustfmt, rust-src
- name: Check formatting
run: |
cargo fmt --all -- --check