diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3464d56..064cbee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ # ----------------------------- END WARNING ------------------------- # ------------------------------------------------------------------- -name: Build and Test +name: CI env: RUSTFLAGS: -Dwarnings on: diff --git a/tests/ci.rs b/tests/ci.rs index 1141095..23dfd98 100755 --- a/tests/ci.rs +++ b/tests/ci.rs @@ -3,8 +3,7 @@ use gh_workflow_tailcall::*; #[test] fn generate_ci_workflow() { let workflow = Workflow::default() - .auto_release(true) - .name("Build and Test".into()); + .auto_release(true); workflow.generate().unwrap(); }