mirror of https://codeberg.org/topola/topola.git
19 lines
412 B
YAML
19 lines
412 B
YAML
matrix:
|
|
include:
|
|
- CHANNEL: stable
|
|
FEATURES: disable_contracts
|
|
- CHANNEL: nightly
|
|
FEATURES:
|
|
|
|
steps:
|
|
test:
|
|
image: codeberg.org/crapstone/topola-test:${CHANNEL}
|
|
pull: true
|
|
environment:
|
|
RUST_BACKTRACE: 1
|
|
CARGO_TERM_COLOR: always
|
|
commands:
|
|
- cargo test --verbose --features "$FEATURES" --target-dir ~/target/
|
|
when:
|
|
event: [pull_request, push, tag]
|