File tree Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : build
2
+
3
+ on :
4
+ push :
5
+ branches : [ dev ]
6
+ pull_request :
7
+ branches : [ dev ]
8
+
9
+ env :
10
+ CARGO_TERM_COLOR : always
11
+
12
+ jobs :
13
+ build_linux :
14
+ runs-on : ubuntu-latest
15
+
16
+ steps :
17
+ - uses : actions/checkout@v2
18
+ - name : build_linux
19
+ run : cargo build --all-features --verbose
20
+ - name : Run tests
21
+ run : cargo test --all-features --release --verbose
22
+
23
+ build_windows :
24
+ runs-on : windows-latest
25
+
26
+ steps :
27
+ - uses : actions/checkout@v2
28
+ - name : build_windows
29
+ run : cargo build --all-features --verbose
30
+ - name : Run tests
31
+ run : cargo test --all-features --release --verbose
32
+
33
+ build_macos :
34
+ runs-on : macos-latest
35
+
36
+ steps :
37
+ - uses : actions/checkout@v2
38
+ - name : build_macos
39
+ run : cargo build --all-features --verbose
40
+ - name : Run tests
41
+ run : cargo test --all-features --release --verbose
You can’t perform that action at this time.
0 commit comments