Skip to content

Specify version in workspace Cargo.toml file #35

Specify version in workspace Cargo.toml file

Specify version in workspace Cargo.toml file #35

Workflow file for this run

# checks that code is properly formatted
name: clippy
on: [push]
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: rustfmt
override: true
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --check