mirror of https://codeberg.org/topola/topola.git
fix woodpecker warnings
This commit is contained in:
parent
697b637205
commit
181eaa7e2c
|
|
@ -8,9 +8,11 @@ matrix:
|
||||||
steps:
|
steps:
|
||||||
build_cli:
|
build_cli:
|
||||||
image: rust
|
image: rust
|
||||||
environment: [RUST_BACKTRACE=1,CARGO_TERM_COLOR=always]
|
environment:
|
||||||
|
RUST_BACKTRACE: 1
|
||||||
|
CARGO_TERM_COLOR: always
|
||||||
commands:
|
commands:
|
||||||
- rustup default "$CHANNEL"
|
- rustup default "$CHANNEL"
|
||||||
- cargo build --features "$FEATURES" --
|
- cargo build --features "$FEATURES" --
|
||||||
when:
|
when:
|
||||||
event: [pr, push, tag]
|
event: [pull_request, push, tag]
|
||||||
|
|
|
||||||
|
|
@ -8,9 +8,11 @@ matrix:
|
||||||
steps:
|
steps:
|
||||||
build_egui:
|
build_egui:
|
||||||
image: rust
|
image: rust
|
||||||
environment: [RUST_BACKTRACE=1,CARGO_TERM_COLOR=always]
|
environment:
|
||||||
|
RUST_BACKTRACE: 1
|
||||||
|
CARGO_TERM_COLOR: always
|
||||||
commands:
|
commands:
|
||||||
- rustup default "$CHANNEL"
|
- rustup default "$CHANNEL"
|
||||||
- cargo build --features "$FEATURES" --bin "topola-egui"
|
- cargo build --features "$FEATURES" --bin "topola-egui"
|
||||||
when:
|
when:
|
||||||
event: [pr, push, tag]
|
event: [pull_request, push, tag]
|
||||||
|
|
|
||||||
|
|
@ -8,9 +8,11 @@ matrix:
|
||||||
steps:
|
steps:
|
||||||
test:
|
test:
|
||||||
image: rust
|
image: rust
|
||||||
environment: [RUST_BACKTRACE=1,CARGO_TERM_COLOR=always]
|
environment:
|
||||||
|
RUST_BACKTRACE: 1
|
||||||
|
CARGO_TERM_COLOR: always
|
||||||
commands:
|
commands:
|
||||||
- rustup default "$CHANNEL"
|
- rustup default "$CHANNEL"
|
||||||
- cargo test --verbose --features "$FEATURES"
|
- cargo test --verbose --features "$FEATURES"
|
||||||
when:
|
when:
|
||||||
event: [pr, push, tag]
|
event: [pull_request, push, tag]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue