Skip to content

Commit a1f7057

Browse files
committed
Add Rust 1.75 to PR template
1 parent 11adf51 commit a1f7057

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Diff for: .github/PULL_REQUEST_TEMPLATE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
### Checklist
66
- [ ] Formatted code using `cargo fmt --all`
77
- [ ] Linted code using clippy
8-
- [ ] with reqwest feature: `cargo clippy --manifest-path influxdb/Cargo.toml --all-targets --no-default-features --features serde,derive,reqwest-client-rustls -- -D warnings`
9-
- [ ] with surf feature: `cargo clippy --manifest-path influxdb/Cargo.toml --all-targets --no-default-features --features serde,derive,hyper-client -- -D warnings`
8+
- [ ] with reqwest feature: `cargo +1.75 clippy --manifest-path influxdb/Cargo.toml --all-targets --no-default-features --features serde,derive,reqwest-client-rustls -- -D warnings`
9+
- [ ] with surf feature: `cargo clippy +1.75 --manifest-path influxdb/Cargo.toml --all-targets --no-default-features --features serde,derive,hyper-client -- -D warnings`
1010
- [ ] Updated README.md using `cargo doc2readme -p influxdb --expand-macros`
1111
- [ ] Reviewed the diff. Did you leave any print statements or unnecessary comments?
1212
- [ ] Any unfinished work that warrants a separate issue captured in an issue with a TODO code comment

Diff for: .github/workflows/rust.yml

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- uses: actions/checkout@v4
27+
# When changing this Rust version, please also update .github/PULL_REQUEST_TEMPLATE.md
28+
# so contributors know which version of Rust to use for clippy checks.
2729
- uses: dtolnay/[email protected]
2830
with:
2931
components: clippy

0 commit comments

Comments
 (0)