Skip to content

Commit ba71d28

Browse files
committed
run test in CD/CI
1 parent 72cbd42 commit ba71d28

2 files changed

Lines changed: 9 additions & 4 deletions

File tree

.github/workflows/rust.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,16 @@ jobs:
4343
uses: actions-rs/cargo@v1.0.3
4444
with:
4545
command: build
46-
args: --all
46+
47+
- name: Tests
48+
uses: actions-rs/cargo@v1.0.3
49+
with:
50+
command: test
51+
4752
- name: Examples
4853
uses: actions-rs/cargo@v1.0.3
4954
env:
5055
RUST_LOG: "trace"
5156
with:
5257
command: run
53-
args: --all-features --example mutex -- 2
58+
args: --all-features --example mutex -- 15

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "shared_memory"
33
description = "A user friendly crate that allows you to share memory between processes"
4-
version = "0.12.3"
4+
version = "0.12.4"
55
authors = ["ElasT0ny <elast0ny00@gmail.com>"]
66
license = "MIT OR Apache-2.0"
77
edition = "2018"
@@ -35,7 +35,7 @@ nix = "0.23"
3535
libc = "0.2"
3636

3737
[target.'cfg(windows)'.dependencies]
38-
win-sys = "0.2"
38+
win-sys = "0.3"
3939

4040
[dev-dependencies]
4141
raw_sync = "0.1"

0 commit comments

Comments
 (0)