Skip to content

Commit 8d9f1e9

Browse files
committed
Update markdown
1 parent 77323e5 commit 8d9f1e9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
with:
1212
toolchain: stable
1313
components: rustfmt, clippy
14-
- run: cargo fmt --check && cargo clippy --examples --tests
15-
- run: cargo check && cargo check --features serializable
14+
- run: cargo fmt --check && cargo clippy --all-targets --all-features
15+
- run: cargo check --all-features
1616
- run: cargo test
1717
coverage:
1818
runs-on: ubuntu-latest

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ include = ["src/", "license"]
1616
serializable = ["serde"]
1717

1818
[dependencies]
19-
markdown = "1.0.0-alpha.12"
19+
markdown = "1.0.0-alpha.13"
2020
serde = { version = "1", optional = true }
2121
swc_core = { version = "0.83.0", features = [
2222
"ecma_ast",

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,11 +144,11 @@ The following bash scripts are useful when working on this project:
144144
```
145145
* format:
146146
```sh
147-
cargo fmt && cargo clippy --examples --tests --benches --fix
147+
cargo fmt && cargo fix
148148
```
149149
* lint:
150150
```sh
151-
cargo fmt --check && cargo clippy --examples --tests --benches
151+
cargo fmt --check && cargo clippy --all-targets
152152
```
153153
* test:
154154
```sh

0 commit comments

Comments
 (0)