Skip to content

Commit

Permalink
Update markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Sep 9, 2023
1 parent 77323e5 commit 8d9f1e9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
with:
toolchain: stable
components: rustfmt, clippy
- run: cargo fmt --check && cargo clippy --examples --tests
- run: cargo check && cargo check --features serializable
- run: cargo fmt --check && cargo clippy --all-targets --all-features
- run: cargo check --all-features
- run: cargo test
coverage:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ include = ["src/", "license"]
serializable = ["serde"]

[dependencies]
markdown = "1.0.0-alpha.12"
markdown = "1.0.0-alpha.13"
serde = { version = "1", optional = true }
swc_core = { version = "0.83.0", features = [
"ecma_ast",
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,11 +144,11 @@ The following bash scripts are useful when working on this project:
```
* format:
```sh
cargo fmt && cargo clippy --examples --tests --benches --fix
cargo fmt && cargo fix
```
* lint:
```sh
cargo fmt --check && cargo clippy --examples --tests --benches
cargo fmt --check && cargo clippy --all-targets
```
* test:
```sh
Expand Down

0 comments on commit 8d9f1e9

Please sign in to comment.