Skip to content

Add setup ceremony encryption and decryption tools #435

Add setup ceremony encryption and decryption tools

Add setup ceremony encryption and decryption tools #435

Workflow file for this run

name: Cargo audit
on:
pull_request:
push:
branches:
- master
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
jobs:
test:
name: Cargo audit
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Rust (${{ matrix.rust }})
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- name: Install cargo-audit
run: cargo install cargo-audit
- name: Run audit check
run: cargo audit