Skip to content

Commit

Permalink
add --verbose flag to all commands (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
SVilgelm authored Mar 19, 2024
1 parent b7297c9 commit 26afa38
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo clippy --all-features
- run: cargo clippy --all-features --verbose
Tests:
runs-on: ubuntu-latest
steps:
Expand All @@ -42,7 +42,7 @@ jobs:
- run: cargo install-test-tools
- name: Run tests
id: tests
run: cargo llvm-cov nextest --all-features --all-targets --no-fail-fast
run: cargo llvm-cov nextest --all-features --all-targets --no-fail-fast --verbose
- name: Prepare coverage report
id: coverage
if: success() || steps.tests.outcome == 'failure'
Expand Down Expand Up @@ -79,5 +79,5 @@ jobs:
- name: Dry run publish
run: |
cargo license --all-features --avoid-dev-deps --json > dependencies-license.json
cargo publish --all-features --allow-dirty --dry-run
cargo publish --all-features --allow-dirty --dry-run --verbose
cargo package --all-features --list --allow-dirty
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ jobs:
run: |
cargo login ${{ secrets.CRATES_IO_TOKEN }}
cargo license --all-features --avoid-dev-deps --json > dependencies-license.json
cargo publish --all-features --allow-dirty
cargo publish --all-features --allow-dirty --verbose
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ v2 = []
v3_0 = []

[dependencies]
serde = { version = "1.0.197", features = ["derive"] }
serde_json = { version = "1.0.114" }
regex = { version = "1.10.3" }
enumset = { version = "1.1.3" }
thiserror = { version = "1.0.58" }
enumset = "1.1.3"
monostate = "0.1.11"
regex = "1.10.3"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
thiserror = "1.0.58"
1 change: 0 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ feature-depth = 1
# A list of advisory IDs to ignore. Note that ignored advisories will still
# output a note when they are encountered.
ignore = [
{ id = "RUSTSEC-2021-0139", reason = "temporary ignore the issue until the cargo-license switched to clap v3" },
#"RUSTSEC-0000-0000",
#{ id = "RUSTSEC-0000-0000", reason = "you can specify a reason the advisory is ignored" },
#"[email protected]", # you can also ignore yanked crate versions if you wish
Expand Down

0 comments on commit 26afa38

Please sign in to comment.