File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
- name : 🔨 Build
1
+ name : 🔨 Cargo Check
2
2
3
3
on :
4
4
pull_request :
9
9
CARGO_TERM_COLOR : always
10
10
11
11
jobs :
12
- build :
12
+ check :
13
13
strategy :
14
14
matrix :
15
15
os : [ubuntu-latest, windows-latest, macos-latest]
16
- toolchain : [stable, beta, nightly ]
17
- name : 🔨 Build release
16
+ toolchain : [stable]
17
+ name : 🔨 Cargo Check
18
18
runs-on : ${{ matrix.os }}
19
19
steps :
20
20
- uses : actions/checkout@v2
31
31
~/.cargo/git/db/
32
32
target/
33
33
key : ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
34
- - name : Build release
35
- run : cargo build --release
34
+ - name : Cargo Check
35
+ run : cargo check --release
36
36
Original file line number Diff line number Diff line change 13
13
strategy :
14
14
matrix :
15
15
os : [ubuntu-latest, windows-latest, macos-latest]
16
- toolchain : [stable, beta, nightly ]
16
+ toolchain : [stable]
17
17
name : 🧪 Run tests
18
18
runs-on : ${{ matrix.os }}
19
19
steps :
You can’t perform that action at this time.
0 commit comments