diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ceb7d32..612f056 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,7 +14,7 @@ env: CARGO_TERM_COLOR: always jobs: -{% if ci-tests -%} +{%- if ci-tests %} test: name: Tests runs-on: ubuntu-latest @@ -25,8 +25,8 @@ jobs: uses: dtolnay/rust-toolchain@nightly - name: Run cargo test run: cargo test -{%- endif -%} -{% if ci-clippy -%} +{%- endif %} +{% if ci-clippy %} clippy_check: name: Clippy runs-on: ubuntu-latest @@ -40,8 +40,8 @@ jobs: components: clippy - name: Run clippy run: cargo clippy -- -D warnings -{%- endif -%} -{% if ci-fmt -%} +{%- endif %} +{% if ci-fmt %} format: name: Format runs-on: ubuntu-latest diff --git a/Cargo.toml b/Cargo.toml index d5b7782..b915e23 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,10 +14,10 @@ repository = "git@github.com:{{username}}/{{project-name}}.git" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" {%- endif -%} -{% if tracing -%} +{%- if tracing %} tracing = "0.1" tracing-subscriber = "0.3" {%- endif -%} -{% if async -%} +{%- if async %} tokio = { version = "1.0", features = ["full"] } {%- endif -%}