Skip to content

Merge pull request #22 from ergoplatform/release/0.4.1 #59

Merge pull request #22 from ergoplatform/release/0.4.1

Merge pull request #22 from ergoplatform/release/0.4.1 #59

Workflow file for this run

name: Linter
on:
push:
branches:
- master
- develop
pull_request:
types:
- opened
- synchronize
jobs:
clippy:
name: clippy (linter)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: clippy
override: true
- name: Check with Clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features -- -D warnings