lint: continue

This commit is contained in:
Benjamin Chastanier
2021-11-03 11:54:01 +01:00
parent 020cf769b1
commit ae52930ab5
2 changed files with 11 additions and 1 deletions

View File

@@ -39,7 +39,7 @@ jobs:
sccache --show-stats
echo "########## LINTER ##########"
cargo fmt --all -- --check --color=always || (echo "Use cargo fmt to format your code"; exit 1)
RUSTC_WRAPPER="" RUSTC_WORKSPACE_WRAPPER=$GITHUB_WORKSPACE/bin/sccache cargo clippy --workspace --all-features --tests --examples --lib -- -D warnings || (echo "Solve your warnings to continue"; exit 1)
RUSTC_WRAPPER="" RUSTC_WORKSPACE_WRAPPER=$GITHUB_WORKSPACE/bin/sccache cargo clippy --workspace --all-features --tests --examples --lib -- -D warnings -W clippy::cargo || (echo "Solve your warnings to continue"; exit 1)
echo "########## START BUILD ##########"
cargo build --all-features
sccache --show-stats

View File

@@ -1,9 +1,19 @@
[package]
name = "qovery-engine"
description = "Deploy your apps on any Cloud provider in just a few seconds"
version = "0.1.0"
authors = ["Romaric Philogene <romaric@qovery.com>"]
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/Qovery/engine"
keywords = ["kubernetes", "rust", "aws", "digitalocean", "scaleway", "cloud", "terraform", "helm"]
categories = ["cloud", "infrastructure"]
edition = "2018"
[[test]]
name = "integration"
path = "tests/lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]