Skip to content

fix(ed25519)!: encode ed25519 signatures raw as per RFC 8032 #344

fix(ed25519)!: encode ed25519 signatures raw as per RFC 8032

fix(ed25519)!: encode ed25519 signatures raw as per RFC 8032 #344

Workflow file for this run

name: Linting
on:
- pull_request
jobs:
lint:
strategy:
matrix:
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.78.0
override: true
components: rustfmt, clippy
- name: Run cargo clippy with all features
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-features --all-targets -- -D warnings