Skip to content

fixes spelling errors in comments across the codebase #163

fixes spelling errors in comments across the codebase

fixes spelling errors in comments across the codebase #163

Workflow file for this run

name: Check clippy
on:
pull_request:
push:
branches:
- master
- stable
tags:
- v*
paths-ignore:
- 'README.md'
jobs:
check-clippy:
name: Check clippy
runs-on: ubuntu-latest
env:
RUST_BACKTRACE: full
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@b173b6ec0100793626c2d9e6b90435061f4fc3e5 # 0.11.0
- name: Checkout sources & submodules
uses: actions/[email protected]
with:
fetch-depth: 5
submodules: recursive
- name: Install toolchain
uses: actions-rs/[email protected]
with:
profile: minimal
toolchain: stable
components: clippy, rustfmt
override: true
- name: Checking clippy
uses: actions-rs/[email protected]
with:
command: clippy
toolchain: stable
args: --all
- name: Checking clippy
uses: actions-rs/[email protected]
with:
command: clippy
toolchain: stable
args: --all --no-default-features --features std,hmac,lazy-static-context