We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac6a87d commit e3ef47eCopy full SHA for e3ef47e
.github/workflows/ci.yml
@@ -80,6 +80,7 @@ jobs:
80
OPAM_VERSION: 2.3.0
81
DUNE_PROFILE: release
82
RUST_BACKTRACE: "1"
83
+ RUSTFLAGS: "-Dwarnings"
84
85
steps:
86
- name: "Windows: Set git config"
@@ -131,6 +132,11 @@ jobs:
131
132
run: |
133
cargo build --manifest-path rewatch/Cargo.toml --target ${{ matrix.rust-target }} --release
134
135
+ - name: Lint rewatch
136
+ if: steps.rewatch-build-cache.outputs.cache-hit != 'true'
137
+ run: |
138
+ cargo clippy --manifest-path rewatch/Cargo.toml --all-targets --all-features
139
+
140
- name: Run rewatch unit tests
141
if: steps.rewatch-build-cache.outputs.cache-hit != 'true'
142
0 commit comments