Skip to content

ci: run on all branches #2

ci: run on all branches

ci: run on all branches #2

Workflow file for this run

name: cargo-deny
on:
push:
pull_request:
jobs:
check:
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@v4
- uses: EmbarkStudios/cargo-deny-action@v2
with:
command: check ${{ matrix.checks }}