We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d103c91 commit 42878d0Copy full SHA for 42878d0
.github/workflows/rust.yml
@@ -5,6 +5,9 @@ on:
5
push:
6
branches:
7
- master
8
+ tags:
9
+ - 'v*.*.*'
10
+ - 'alpha_v*'
11
pull_request:
12
13
@@ -47,16 +50,10 @@ jobs:
47
50
command: fmt
48
51
args: --all -- --check
49
52
- - name: Run cargo build
53
+ - name: Run cargo check
54
uses: actions-rs/cargo@v1
55
with:
- command: build
-
- - name: Run cargo build (release)
56
- uses: actions-rs/cargo@v1
57
- with:
58
59
- args: --release
+ command: check
60
61
- name: Run cargo clippy
62
0 commit comments