Skip to content

remove peer sync service #265

remove peer sync service

remove peer sync service #265

Workflow file for this run

# This runs `cargo deny check` on all dependencies (only if Cargo deps changed)
name: Deny
on:
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
audit:
runs-on: ubuntu-latest
steps:
- name: Cache
uses: actions/cache@v4
with:
path: |
~/.cargo
target
key: deny
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install dependencies
run: cargo install cargo-deny --locked
- name: Deny
run: cargo deny check