musixmatch-inofficial/.woodpecker.yml
ThetaDev 9904597d8f
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
fix: add 60s break to CI workflow
2024-02-03 16:32:27 +01:00

15 lines
470 B
YAML

steps:
test:
image: rust:latest
environment:
- CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse
secrets:
- musixmatch_email
- musixmatch_password
commands:
- rustup component add rustfmt clippy
- cargo fmt --all --check
- cargo clippy --all -- -D warnings
- MUSIXMATCH_CLIENT=Desktop cargo test --workspace
- sleep 60 # because of Musixmatch rate limit
- MUSIXMATCH_CLIENT=Android cargo test --workspace