File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -34,12 +34,19 @@ jobs:
34
34
- uses : actions-rs/cargo@v1
35
35
with :
36
36
command : build
37
+ args : --release --all-features -v
37
38
38
39
- uses : actions-rs/cargo@v1
39
40
with :
40
41
command : test
42
+ args : --all-features -v
41
43
42
44
- uses : actions-rs/cargo@v1
43
45
with :
44
46
command : fmt
45
47
args : --all -- --check
48
+
49
+ - name : Security audit
50
+ uses : actions-rs/audit-check@v1
51
+ with :
52
+ token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ strings as well as files.
29
29
You can install this easily via ` cargo ` by including it in your ` Cargo.toml ` file like:
30
30
``` TOML
31
31
[dependencies ]
32
- configparser = " 3.0.0 "
32
+ configparser = " 3.0.1 "
33
33
```
34
34
35
35
## ➕ Supported datatypes
@@ -212,6 +212,7 @@ Old changelogs are in [CHANGELOG.md](CHANGELOG.md).
212
212
- 3.0.1 (** STABLE** )
213
213
- Uses ` CRLF ` line endings for Windows files.
214
214
- Bumps crate to 2021 edition.
215
+ - Adds features to CI pipeline.
215
216
216
217
### 🔜 Future plans
217
218
You can’t perform that action at this time.
0 commit comments