File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 42
42
- run : cargo clippy --all-features --locked -- -D warnings
43
43
44
44
fmt :
45
- name : Rustfmt
45
+ name : Format
46
46
runs-on : ubuntu-latest
47
47
steps :
48
48
- uses : actions/checkout@v4
49
49
- run : rustup component add rustfmt
50
50
- run : cargo fmt --all -- --check
51
+ - run : npx prettier --check "**/*.md"
Original file line number Diff line number Diff line change @@ -9,14 +9,14 @@ A Rust port of the [pkginfo](https://pypi.org/project/pkginfo/) Python library.
9
9
10
10
## Installation
11
11
12
- Add it to your `` Cargo.toml ` ` :
12
+ Add it to your ` Cargo.toml ` :
13
13
14
14
``` toml
15
15
[dependencies ]
16
16
python-pkginfo = " 0.6"
17
17
```
18
18
19
- then you are good to go. If you are using Rust 2015 you have to add `` extern crate python_pkginfo ` ` to your crate root as well.
19
+ then you are good to go. If you are using Rust 2015 you have to add ` extern crate python_pkginfo ` to your crate root as well.
20
20
21
21
## Example
22
22
You can’t perform that action at this time.
0 commit comments