1
0
Fork 0
mirror of https://gitlab.com/news-flash/article_scraper.git synced 2025-07-07 16:15:32 +02:00
article_scraper/.gitlab-ci.yml
2023-01-01 14:51:34 +01:00

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