File tree 2 files changed +10
-3
lines changed
2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -122,7 +122,9 @@ jobs:
122
122
strategy :
123
123
fail-fast : true
124
124
matrix :
125
- rust : ['1.75', beta, nightly]
125
+ # Pinned nightly version until this gets resolved:
126
+ # https://github.com/rust-lang/rust/issues/125474
127
+ rust : ['1.75', beta, 'nightly-2024-05-22']
126
128
name : tests (Rust ${{ matrix.rust }})
127
129
steps :
128
130
- uses : actions/checkout@v4
@@ -176,8 +178,13 @@ jobs:
176
178
steps :
177
179
- uses : actions/checkout@v4
178
180
-
uses :
mozilla-actions/[email protected]
179
- - uses : dtolnay/rust-toolchain@nightly
181
+ - uses : dtolnay/rust-toolchain@master
180
182
with :
183
+ # Nightly is required to count doctests coverage
184
+ #
185
+ # Pinned nightly version until this gets resolved
186
+ # https://github.com/rust-lang/rust/issues/125474
187
+ toolchain : ' nightly-2024-05-22'
181
188
components : llvm-tools-preview
182
189
- name : Install cargo-llvm-cov
183
190
uses : taiki-e/install-action@cargo-llvm-cov
Original file line number Diff line number Diff line change @@ -222,7 +222,7 @@ pub trait HugrMut: HugrMutInternals {
222
222
}
223
223
224
224
/// Records the result of inserting a Hugr or view
225
- /// via [HugrMut::insert_hugr] or [HugrMut::insert_from_view]
225
+ /// via [HugrMut::insert_hugr] or [HugrMut::insert_from_view].
226
226
pub struct InsertionResult {
227
227
/// The node, after insertion, that was the root of the inserted Hugr.
228
228
///
You can’t perform that action at this time.
0 commit comments