-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: migrate to gh-workflow-tailcall
- Loading branch information
1 parent
b1d11cb
commit d4de276
Showing
2 changed files
with
7 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,10 @@ | ||
use gh_workflow::toolchain::Toolchain; | ||
use gh_workflow::*; | ||
use gh_workflow_tailcall::*; | ||
|
||
#[test] | ||
fn generate() { | ||
let flags = RustFlags::deny("warnings"); | ||
fn generate_ci_workflow() { | ||
let workflow = Workflow::default() | ||
.auto_release(true) | ||
.name("Build and Test".into()); | ||
|
||
let build = Job::new("Build and Test") | ||
.add_step(Step::checkout()) | ||
.add_step( | ||
Toolchain::default() | ||
.add_stable() | ||
.add_nightly() | ||
.add_clippy() | ||
.add_fmt(), | ||
) | ||
.add_step( | ||
Cargo::new("test") | ||
.args("--all-features --workspace") | ||
.name("Cargo Test"), | ||
) | ||
.add_step(Cargo::new("bench").name("Cargo Bench")) | ||
.add_step( | ||
Cargo::new("fmt") | ||
.nightly() | ||
.args("--check") | ||
.name("Cargo Fmt"), | ||
) | ||
.add_step( | ||
Cargo::new("clippy") | ||
.nightly() | ||
.args("--all-features --workspace -- -D warnings") | ||
.name("Cargo Clippy"), | ||
); | ||
|
||
let event = Event::default() | ||
.push(Push::default().add_branch("main")) | ||
.pull_request( | ||
PullRequest::default() | ||
.add_type(PullRequestType::Opened) | ||
.add_type(PullRequestType::Synchronize) | ||
.add_type(PullRequestType::Reopened) | ||
.add_branch("main"), | ||
); | ||
|
||
Workflow::new("Build and Test") | ||
.add_env(flags) | ||
.on(event) | ||
.add_job("build", build) | ||
.generate() | ||
.unwrap(); | ||
workflow.generate().unwrap(); | ||
} |