File tree Expand file tree Collapse file tree 2 files changed +1
-29
lines changed Expand file tree Collapse file tree 2 files changed +1
-29
lines changed Original file line number Diff line number Diff line change 11
11
RUSTFLAGS : -Dwarnings
12
12
13
13
jobs :
14
- build_and_test :
15
- name : Build and test
16
- runs-on : ${{ matrix.os }}
17
- strategy :
18
- matrix :
19
- os : [ubuntu-latest, windows-latest, macOS-latest]
20
- rust : [stable]
21
-
22
- steps :
23
- - uses : actions/checkout@master
24
-
25
- - name : Install ${{ matrix.rust }}
26
- uses : actions-rs/toolchain@v1
27
- with :
28
- toolchain : ${{ matrix.rust }}
29
- override : true
30
-
31
- - name : check
32
- uses : actions-rs/cargo@v1
33
- with :
34
- command : check
35
- args : --all --bins --examples
36
-
37
- - name : tests
38
- uses : actions-rs/cargo@v1
39
- with :
40
- command : test
41
- args : --all
42
-
43
14
check_fmt_and_docs :
44
15
name : Checking fmt and docs
45
16
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change
1
+
You can’t perform that action at this time.
0 commit comments