Skip to content

Add ed25519 public key bytes wrapper #637

Add ed25519 public key bytes wrapper

Add ed25519 public key bytes wrapper #637

Workflow file for this run

name: Clippy
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
paths-ignore:
- 'docs/**'
jobs:
clippy:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
project:
[
crypto
]
steps:
- uses: actions/checkout@v2
- name: Install clippy with stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: clippy
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --manifest-path=Cargo.toml --all-targets --all-features -- -D warnings
name: clippy-${{ matrix.project }}