-
Notifications
You must be signed in to change notification settings - Fork 12
38 lines (32 loc) · 1.08 KB
/
deny.yaml
File metadata and controls
38 lines (32 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# ********************************************************************************
# Copyright (c) 2025 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************/
# Runs cargo deny when Cargo.toml or Cargo.lock has been changed
name: Deny
on:
pull_request:
paths:
- "Cargo.toml"
- "Cargo.lock"
workflow_dispatch:
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
env:
RUST_TOOLCHAIN: ${{ vars.RUST_TOOLCHAIN || 'stable' }}
RUSTFLAGS: -Dwarnings
CARGO_TERM_COLOR: always
jobs:
deny:
uses: eclipse-uprotocol/ci-cd/.github/workflows/rust-deny-check.yaml@main
with:
arguments: --all-features --locked --exclude-dev