Skip to content

✨ Add persistent state and rate limiting (#2) #14

✨ Add persistent state and rate limiting (#2)

✨ Add persistent state and rate limiting (#2) #14

Workflow file for this run

name: Validate dependencies
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
cargo-deny:
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@v3
- uses: EmbarkStudios/cargo-deny-action@v1
with:
command: check ${{ matrix.checks }}