Skip to content

client, server: add support for boringssl TLS #250

client, server: add support for boringssl TLS

client, server: add support for boringssl TLS #250

Workflow file for this run

name: deny
on:
pull_request:
paths:
- Cargo.toml
- "**/Cargo.toml"
- deny.toml
- .github/workflows/deny.yml
permissions:
contents: read
env:
CARGO_INCREMENTAL: 0
CARGO_NET_RETRY: 10
RUSTUP_MAX_RETRIES: 10
jobs:
check:
timeout-minutes: 10
runs-on: ubuntu-latest
strategy:
matrix:
checks:
- advisories
- bans licenses sources
# Prevent sudden announcement of a new advisory from failing Ci.
continue-on-error: ${{ matrix.checks == 'advisories' }}
steps:
- uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f
- uses: EmbarkStudios/cargo-deny-action@8a8607bd8e2b3a514d5a40174cc7c55b229d9ba7
with:
command: check ${{ matrix.checks }}