Skip to content

Remove deprecated time feature from chrono dep #25

Remove deprecated time feature from chrono dep

Remove deprecated time feature from chrono dep #25

Workflow file for this run

on:
push:
pull_request:
name: Lint
permissions:
contents: read
checks: write
jobs:
clippy_check:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features -- -D warnings