File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 77 toolchain :
88 required : true
99 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"
1014
1115runs :
1216 using : " composite"
2226 run : cargo build --all-features --verbose --package ${{ inputs.package }}
2327
2428 - name : Run tests
29+ if : ${{ inputs.run-tests }}
2530 shell : bash
2631 run : cargo test --all-features --verbose --package ${{ inputs.package }}
Original file line number Diff line number Diff line change 3535 with :
3636 package : lambda-integration-tests
3737 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