mirror of
https://gitlab.com/news-flash/article_scraper.git
synced 2025-07-07 16:15:32 +02:00
15 lines
321 B
YAML
15 lines
321 B
YAML
stages:
|
|
- build
|
|
|
|
|
|
run-build:
|
|
stage: build
|
|
image: rust:latest
|
|
before_script:
|
|
- rustup component add rustfmt
|
|
- rustup component add clippy
|
|
script:
|
|
- rustc --version && cargo --version
|
|
- cargo fmt -- --check
|
|
- cargo clippy --all-targets --all-features -- -D warnings
|
|
- cargo build --release --jobs 1
|