Skip to content

Update derive_more requirement from 0.99.5 to 1.0.0 #22

Update derive_more requirement from 0.99.5 to 1.0.0

Update derive_more requirement from 0.99.5 to 1.0.0 #22

Workflow file for this run

name: Code Style Check
on:
push:
branches:
- master
pull_request:
jobs:
code_style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Run cargo fmt
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 --all --tests -- -D clippy::all