Files
nanoreth/.github/workflows/deny.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 15: cannot unmarshal !!str `deny-${...` into model.RawConcurrency
2023-04-06 17:24:04 +02:00

26 lines
441 B
YAML

name: deny
on:
push:
branches: [main]
paths: [Cargo.lock]
pull_request:
branches: [main]
paths: [Cargo.lock]
env:
RUSTFLAGS: -D warnings
CARGO_TERM_COLOR: always
concurrency: deny-${{ github.head_ref || github.run_id }}
jobs:
deny:
name: deny
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: EmbarkStudios/cargo-deny-action@v1
with:
command: check all