File tree 2 files changed +8
-0
lines changed
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 7
7
toolchain :
8
8
required : true
9
9
description : " the Rust toolchain to use"
10
+ run-tests :
11
+ required : true
12
+ default : true
13
+ description : " whether to run tests in addition to building"
10
14
11
15
runs :
12
16
using : " composite"
22
26
run : cargo build --all-features --verbose --package ${{ inputs.package }}
23
27
24
28
- name : Run tests
29
+ if : ${{ inputs.run-tests != false }}
25
30
shell : bash
26
31
run : cargo test --all-features --verbose --package ${{ inputs.package }}
Original file line number Diff line number Diff line change 35
35
with :
36
36
package : lambda-integration-tests
37
37
toolchain : ${{ matrix.toolchain}}
38
+ # the tests will generally fail in ci since they make a network call to a real endpoint,
39
+ # this step is just designed to make sure they build successfully
40
+ run-tests : false
You can’t perform that action at this time.
0 commit comments