Skip to content

ci: use actions/checkout@v4 #87

ci: use actions/checkout@v4

ci: use actions/checkout@v4 #87

Workflow file for this run

on: [push, pull_request]
name: Clippy check
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: clippy
override: true
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}