Skip to content

Update Cargo.toml

Update Cargo.toml #21

Workflow file for this run

name: Check
on:
pull_request:
branches: ["master"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Rust toolchain stable
uses: actions-rs/toolchain@v1
with:
toolchain: 1.75.0
components: clippy, rustfmt
- name: nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy, rustfmt
- run: cargo fmt --check
- run: cargo clippy --no-default-features
- run: cargo +nightly clippy --all-features