diff options
author | 2022-07-14 17:47:48 +0200 | |
---|---|---|
committer | 2022-07-14 19:39:43 +0200 | |
commit | 1d7a4690a440836a42e8e64c9c97da181a1147ed (patch) | |
tree | de942a7f66db735c049429c7a9c2fd2bce1983dd /.github | |
parent | 09d2541a7a88441dd91881287c6b56baadde9e51 (diff) | |
download | iced-1d7a4690a440836a42e8e64c9c97da181a1147ed.tar.gz iced-1d7a4690a440836a42e8e64c9c97da181a1147ed.tar.bz2 iced-1d7a4690a440836a42e8e64c9c97da181a1147ed.zip |
lint-ci: Consider clippy warnings as errors
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/lint.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 09cde39b..6fd98374 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -9,4 +9,4 @@ jobs: components: clippy - uses: actions/checkout@master - name: Check lints - run: cargo clippy --workspace --all-features --all-targets --no-deps + run: cargo clippy --workspace --all-features --all-targets --no-deps -- -D warnings |