Skip to content
This repository has been archived by the owner on May 7, 2024. It is now read-only.

Update README.md

Update README.md #31

Workflow file for this run

name: Lint
on:
pull_request:
branches: [master]
jobs:
lint:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Install checkers and linters
run: |
rustup update stable
rustup default stable
rustup component add rustfmt
rustup component add clippy
- name: Check Formatting
run: cargo fmt --all -- --check
- name: Check Idiomatic
run: cargo clippy --all --all-features -- -D warnings
- name: Build
run: cargo build --verbose