mirror of
https://github.com/jlengrand/engine.git
synced 2026-03-10 08:11:21 +00:00
lint: continue
This commit is contained in:
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
@@ -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
|
||||
|
||||
10
Cargo.toml
10
Cargo.toml
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user