Skip to content

Commit

Permalink
feat: add cli arg param for udeps in rust-workflow.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sirewix committed Jan 10, 2025
1 parent bbbfc93 commit 074e246
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/rust-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
clippy_args: {required: false, type: string, default: ""}
test_args: {required: false, type: string, default: ""}
testcov_args: {required: false, type: string, default: ""}
udeps_args: {required: false, type: string, default: ""}

# Environment variables for all jobs.
env:
Expand Down Expand Up @@ -53,7 +54,7 @@ jobs:

- name: Udeps
shell: bash
run: cargo +${NIGHTLY_VERSION} udeps
run: cargo +${NIGHTLY_VERSION} udeps ${{inputs.udeps_args}}

- name: Typos
shell: bash
Expand Down

0 comments on commit 074e246

Please sign in to comment.