Skip to content

[Penify]: Setting up Automated AI-Driven Documentation for GitHub! #8

[Penify]: Setting up Automated AI-Driven Documentation for GitHub!

[Penify]: Setting up Automated AI-Driven Documentation for GitHub! #8

Workflow file for this run

name: Clippy check
on:
workflow_dispatch:
pull_request:
jobs:
clippy-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Rustup add Clippy
run: rustup component add clippy
- name: Run linter
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features