Skip to content

Commit d2fa0a2

Browse files
committed
Run CI on rustdoc-json branch
1 parent edd0c90 commit d2fa0a2

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: CI
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ main, rustdoc-json ]
66
pull_request:
77
branches: [ main ]
88
schedule:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version = "1.4.9-pre"
55
authors = ["Diogo Sousa <[email protected]>"]
66

77
edition = "2024"
8-
rust-version = "1.85.0"
8+
rust-version = "1.86.0"
99

1010
homepage = "https://github.com/orium/cargo-rdme"
1111
repository = "https://github.com/orium/cargo-rdme"

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ impl Project {
8282
package_name: &str,
8383
) -> Option<&'a cargo_metadata::Package> {
8484
metadata.packages.iter().find(|package| {
85-
package.name.as_ref() == package_name && metadata.workspace_members.contains(&package.id)
85+
package.name.as_ref() == package_name
86+
&& metadata.workspace_members.contains(&package.id)
8687
})
8788
}
8889

0 commit comments

Comments
 (0)