Skip to content

✨ New Staking Contract #1019

✨ New Staking Contract

✨ New Staking Contract #1019

Workflow file for this run

name: "clippy"
on:
pull_request:
paths: ["**/*.rs"]
permissions:
contents: read
pull-requests: write
checks: write
jobs:
clippy:
name: clippy check
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: clippy
override: true
- uses: LoliGothick/clippy-check@master
with:
deny: warnings
token: ${{ secrets.GITHUB_TOKEN }}
options: "--all-targets --all-features"