diff --git a/.woodpecker.yml b/.woodpecker.yml index 1dd7232..d618c21 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -6,13 +6,13 @@ steps: RUST_BACKTRACE: 1 commands: - rustup component add rustfmt clippy - - cargo install sqlx-cli --no-default-features --features postgres,tls-rustls + - cargo install -j 2 sqlx-cli --no-default-features --features postgres,tls-rustls - cd backend - sqlx migrate run - cargo fmt --all -- --check - - cargo clippy --all-targets --all-features -- -D warnings - - cargo test --all - - cargo build --release + - cargo clippy -j 2 --all-targets --all-features -- -D warnings + - cargo test -j 2 --all + - cargo build -j 2 --release frontend: image: node:20-bookworm