Skip to content

Commit 8dde95a

Browse files
committed
more ignores
1 parent 84040a0 commit 8dde95a

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/check-links.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ jobs:
2222
uses: lycheeverse/lychee-action@v2.4.1
2323
with:
2424
fail: false
25-
checkbox: false
2625
output: ./lychee/out.md
2726
args: "--mode task --base . --config ./ci/lychee.toml ."
2827

src/concurrency/parallel/rayon-thumbnails.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ then saves them in a new folder called `thumbnails`.
88
[`glob::glob_with`] finds jpeg files in current directory. `rayon` resizes
99
images in parallel using [`par_iter`] calling [`DynamicImage::resize`].
1010

11-
```rust,edition2018,no_run
11+
```rust,edition2018,ignore,no_run
1212
use anyhow::Result;
1313
use std::path::Path;
1414
use std::fs::create_dir_all;

src/concurrency/thread/threadpool-fractal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Create [`ThreadPool`] with thread count equal to number of cores with [`num_cpus
1616
[`ImageBuffer::put_pixel`] uses the data to set the pixel color.
1717
[`ImageBuffer::save`] writes the image to `output.png`.
1818

19-
```rust,edition2018,no_run
19+
```rust,edition2018,ignore,no_run
2020
use anyhow::Result;
2121
use std::sync::mpsc::channel;
2222
use threadpool::ThreadPool;

0 commit comments

Comments
 (0)