We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ddf63c commit 6ac87dcCopy full SHA for 6ac87dc
.github/workflows/pr.yml
@@ -107,11 +107,22 @@ jobs:
107
override: true
108
109
# Install and run cargo udeps to find unused cargo dependencies
110
- - name: cargo-udeps duplicate dependency check
+ - name: cargo-udeps unused dependency check
111
run: |
112
cargo install cargo-udeps --locked
113
cargo +nightly udeps --all-targets
114
115
+ cargo-deny:
116
+ runs-on: ubuntu-latest
117
+ steps:
118
+ - uses: actions/checkout@v2
119
+
120
+ # wget the shared deny.toml file from the QA repo
121
+ - shell: bash
122
+ run: wget https://raw.githubusercontent.com/maidsafe/QA/master/misc-scripts/deny.toml
123
124
+ - uses: EmbarkStudios/cargo-deny-action@v1
125
126
test:
127
name: Test
128
runs-on: ${{ matrix.os }}
0 commit comments