Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

add assert for signature length check to stop API misuse. #367

add assert for signature length check to stop API misuse.

add assert for signature length check to stop API misuse. #367

Workflow file for this run

name: deny
on: [push, pull_request]
jobs:
cargo-deny:
runs-on: ubuntu-latest
strategy:
matrix:
checks:
- sources
- bans
- advisories
# Prevent sudden announcement of a new advisory from failing ci:
continue-on-error: ${{ matrix.checks == 'sources' }}
steps:
- name: Checkout sources
uses: actions/checkout@v4
with:
submodules: recursive
- name: Apply patch
shell: bash
run: |
./sh_script/pre-build.sh
- uses: EmbarkStudios/cargo-deny-action@v1
with:
command: check ${{ matrix.checks }}