Skip to content

Commit 641d84f

Browse files
committed
feat: add more CI tooling
1 parent fc74323 commit 641d84f

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/rust.yaml

+7
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,19 @@ jobs:
3434
- uses: actions-rs/cargo@v1
3535
with:
3636
command: build
37+
args: --release --all-features -v
3738

3839
- uses: actions-rs/cargo@v1
3940
with:
4041
command: test
42+
args: --all-features -v
4143

4244
- uses: actions-rs/cargo@v1
4345
with:
4446
command: fmt
4547
args: --all -- --check
48+
49+
- name: Security audit
50+
uses: actions-rs/audit-check@v1
51+
with:
52+
token: ${{ secrets.GITHUB_TOKEN }}

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ strings as well as files.
2929
You can install this easily via `cargo` by including it in your `Cargo.toml` file like:
3030
```TOML
3131
[dependencies]
32-
configparser = "3.0.0"
32+
configparser = "3.0.1"
3333
```
3434

3535
## ➕ Supported datatypes
@@ -212,6 +212,7 @@ Old changelogs are in [CHANGELOG.md](CHANGELOG.md).
212212
- 3.0.1 (**STABLE**)
213213
- Uses `CRLF` line endings for Windows files.
214214
- Bumps crate to 2021 edition.
215+
- Adds features to CI pipeline.
215216

216217
### 🔜 Future plans
217218

0 commit comments

Comments
 (0)