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

Wiki - Deleted documentation folder as it's moved to the wiki #673

Wiki - Deleted documentation folder as it's moved to the wiki

Wiki - Deleted documentation folder as it's moved to the wiki #673

Workflow file for this run

name: Clippy
on:
push:
branches:
- master
- develop
- v2.0-dev
pull_request:
branches:
- master
- develop
- v2.0-dev
paths-ignore:
- "docs/**"
- "specification/**"
jobs:
clippy:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Install clippy with stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: clippy
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
name: clippy check