Skip to content

Merge pull request #27 from somatic-labs/dependabot/go_modules/github… #39

Merge pull request #27 from somatic-labs/dependabot/go_modules/github…

Merge pull request #27 from somatic-labs/dependabot/go_modules/github… #39

Workflow file for this run

# .github/workflows/clippy.yml
name: Clippy
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
clippy:
name: Run Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: clippy
- name: Run Clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features --manifest-path contracts/statefilestore/Cargo.toml -- -D warnings