Skip to content

Commit a44741c

Browse files
committed
chore: deny unwrap_used
1 parent 44f8b61 commit a44741c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,6 @@ jobs:
6060

6161
- name: Clippy
6262
run: cargo clippy --all-targets --all-features
63-
env:
64-
RUSTFLAGS: '-DWarnings -W clippy::unwrap_used'
6563

6664

6765
build:

src/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#![doc = include_str!("../README.md")]
2+
#![deny(clippy::unwrap_used)]
23

34
use std::cell::RefCell;
45
use std::env;

0 commit comments

Comments
 (0)