1
0
Fork 0
mirror of https://gitlab.com/news-flash/article_scraper.git synced 2025-07-07 08:05:31 +02:00
article_scraper/.gitlab-ci.yml
Jan Lukas Gernert ca1cc47af1 update CI image
2025-01-17 03:02:40 +01:00

15 lines
310 B
YAML

stages:
- build
run-build:
stage: build
image: rust:1.83
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