File tree Expand file tree Collapse file tree 3 files changed +13
-18
lines changed Expand file tree Collapse file tree 3 files changed +13
-18
lines changed Original file line number Diff line number Diff line change @@ -96,20 +96,11 @@ jobs:
96
96
uses : actions-rs/toolchain@v1
97
97
with :
98
98
toolchain : nightly
99
- override : true
100
99
components : rustfmt
101
100
102
- - name : Install Rust Stable
103
- uses : actions-rs/toolchain@v1
104
- with :
105
- toolchain : stable
106
- override : true
107
- components : clippy
108
-
109
101
- name : Cargo generate lockfile
110
102
uses : actions-rs/cargo@v1
111
103
with :
112
- toolchain : stable
113
104
command : generate-lockfile
114
105
115
106
- name : Setup cargo cache
@@ -133,21 +124,18 @@ jobs:
133
124
- name : Cargo clippy
134
125
uses : actions-rs/cargo@v1
135
126
with :
136
- toolchain : stable
137
127
command : clippy
138
128
args : --release
139
129
140
130
- name : Cargo build
141
131
uses : actions-rs/cargo@v1
142
132
with :
143
- toolchain : stable
144
133
command : build
145
134
args : --release
146
135
147
136
- name : Cargo test
148
137
uses : actions-rs/cargo@v1
149
138
with :
150
- toolchain : stable
151
139
command : test
152
140
args : --release -- --nocapture
153
141
Original file line number Diff line number Diff line change 40
40
php-version : 7.4
41
41
tools : php-config
42
42
43
- - name : Install Rust Stable
44
- uses : actions-rs/toolchain@v1
45
- with :
46
- toolchain : stable
47
- override : true
48
-
49
43
- name : Cargo publish phper-sys
50
44
uses : actions-rs/cargo@v1
51
45
with :
Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2022 PHPER Framework Team
2
+ # PHPER is licensed under Mulan PSL v2.
3
+ # You can use this software according to the terms and conditions of the Mulan
4
+ # PSL v2. You may obtain a copy of Mulan PSL v2 at:
5
+ # http://license.coscl.org.cn/MulanPSL2
6
+ # THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY
7
+ # KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
8
+ # NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
9
+ # See the Mulan PSL v2 for more details.
10
+
11
+ [toolchain ]
12
+ channel = " 1.65"
13
+ components = [" clippy" , " rustfmt" ]
You can’t perform that action at this time.
0 commit comments