activitypub-federation-rust/.woodpecker.yml

57 lines
1.1 KiB
YAML
Raw Normal View History

variables:
- &rust_image "rust:1.77-bullseye"
steps:
2023-03-24 20:48:51 +00:00
cargo_fmt:
2022-06-02 11:17:12 +00:00
image: rustdocker/rust:nightly
commands:
- /root/.cargo/bin/cargo fmt -- --check
when:
- event: pull_request
2022-06-02 11:17:12 +00:00
2023-03-24 20:48:51 +00:00
cargo_clippy:
image: *rust_image
2022-11-26 16:12:48 +00:00
environment:
CARGO_HOME: .cargo
2022-06-02 11:17:12 +00:00
commands:
- rustup component add clippy
- cargo clippy --all-targets --all-features
when:
- event: pull_request
2022-06-02 11:17:12 +00:00
2023-03-24 20:48:51 +00:00
cargo_test:
image: *rust_image
2022-06-02 11:17:12 +00:00
environment:
2022-11-26 16:12:48 +00:00
CARGO_HOME: .cargo
2022-06-02 11:17:12 +00:00
commands:
2023-03-01 23:19:10 +00:00
- cargo test --all-features --no-fail-fast
when:
- event: pull_request
2023-03-24 20:48:51 +00:00
cargo_doc:
image: *rust_image
2023-03-01 23:19:10 +00:00
environment:
CARGO_HOME: .cargo
commands:
- cargo doc --all-features
when:
- event: pull_request
2023-03-01 23:19:10 +00:00
2023-03-24 20:48:51 +00:00
cargo_run_actix_example:
image: *rust_image
environment:
2022-11-26 16:12:48 +00:00
CARGO_HOME: .cargo
commands:
2023-03-02 14:18:06 +00:00
- cargo run --example local_federation actix-web
when:
- event: pull_request
2023-03-01 23:19:10 +00:00
2023-03-24 20:48:51 +00:00
cargo_run_axum_example:
image: *rust_image
environment:
CARGO_HOME: .cargo
commands:
2023-03-02 14:18:06 +00:00
- cargo run --example local_federation axum
when:
- event: pull_request