Skip to content

Commit efab13e

Browse files
committed
modify github action config
1 parent fb6aa58 commit efab13e

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/main.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ jobs:
2020
mkdir bin
2121
curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.14/mdbook-v0.4.14-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
2222
echo "$(pwd)/bin" >> $GITHUB_PATH
23-
- run: mdbook build && mdbook test # In case of custom book path: mdbook build path/to/mybook && mdbook test path/to/mybook
23+
# - run: mdbook build && mdbook test # In case of custom book path: mdbook build path/to/mybook && mdbook test path/to/mybook
24+
- run: mdbook build
2425
- uses: JamesIves/[email protected]
2526
with:
2627
branch: gh-pages # The branch the action should deploy to.

src/Q1/lang.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Niko Matsakis 和 Tyler Mandry 代表 Async 工作组发布了一篇文章,阐
2222

2323
假设在 Rust 2024 Edition 中,你使用异步 Rust 创建一个新项目:使用crates.io 的第三方库 `crabbycat`来遍历指定 GitHub 仓库的issues列表:
2424

25-
```rust
25+
```rust,ignore
2626
async fn main() {
2727
for await? issue in crabbycat::issues("https://github.com/rust-lang/rust") {
2828
if meets_criteria(&issue) {
@@ -34,7 +34,7 @@ async fn main() {
3434

3535
你的项目似乎工作正常,这个时候有人给你发起 PR: 增加 GitLab 支持。你看到 PR 的代码有下面改进:
3636

37-
```rust
37+
```rust,ignore
3838
3939
// 增加了 Async Trait `IssueProvider` 来抽象 issues 接口
4040
// 兼容 GitHub/Gitlab/Gitothers

src/Q1/opensource/game.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Bevy ECS 的最优先准则是 人体工程学(ergonomics),即,开发体
2626

2727
这是 0.5 版本增加 System 的示例:
2828

29-
```rust
29+
```rust,ignore
3030
// This is a standalone Bevy 0.5 App that adds a simple `gravity` system to the App's schedule
3131
// and automatically runs it in parallel with other systems
3232
fn main() {
@@ -45,7 +45,7 @@ fn gravity(time: Res<Time>, mut query: Query<&mut Transform>) {
4545

4646
这是0.6的改进,完全去掉了 `.system()`
4747

48-
```rust
48+
```rust,ignore
4949
// pure bliss!
5050
App::new()
5151
.add_plugins(DefaultPlugins)
@@ -57,7 +57,7 @@ App::new()
5757

5858
在Bevy 0.6中,类型不再默认实现 `Component` trait。在过去的版本中,通过下面这样一揽子(blanket impl)的实现为所有类型实现了 `Compont` trait 。
5959

60-
```rust
60+
```rust,ignore
6161
impl<T: Send + Sync + 'static> Component for T {}
6262
```
6363

@@ -70,7 +70,7 @@ impl<T: Send + Sync + 'static> Component for T {}
7070

7171
现在可以通过派生宏自动实现,也可以手动实现 `Component`
7272

73-
```rust
73+
```rust,ignore
7474
// defaults to "Table" storage
7575
#[derive(Component)]
7676
struct SomeComponent;

0 commit comments

Comments
 (0)