appelgriebsch / clippy-action

πŸ»β€β„οΈπŸ“¦ GitHub action to run Clippy, an up-to-date and modern version of actions-rs/clippy

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

πŸ»β€β„οΈπŸ“¦ Clippy GitHub Action

GitHub action to run Clippy, an up-to-date and modern version of actions-rs/clippy

clippy-action is a modernized and up-to-date version of actions-rs/clippy that takes advantage of GitHub's new features related to actions, and keeps dependencies up to date as actions-rs/clippy has been unmaintained since 2020.

Usage

jobs:
    clippy:
        name: Clippy
        runs-on: ubuntu-latest
        steps:
            - uses: actions/checkout@v3
            - uses: dtolnay/rust-toolchain@stable
              with:
                  components: clippy
            - uses: auguwu/clippy-action@1.2.1
              with:
                  token: ${{secrets.GITHUB_TOKEN}}

This action does allow writing check runs for Clippy results. To enable it, you will need to add this to your workflow:

permissions:
    checks: write

License

clippy-action is released under the Apache 2.0 License with love by Noel!

About

πŸ»β€β„οΈπŸ“¦ GitHub action to run Clippy, an up-to-date and modern version of actions-rs/clippy

License:Apache License 2.0


Languages

Language:TypeScript 99.6%Language:Rust 0.4%