Skip to content

Delete .github/ISSUE_TEMPLATE directory #4

Delete .github/ISSUE_TEMPLATE directory

Delete .github/ISSUE_TEMPLATE directory #4

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