Skip to content

Commit

Permalink
miscellaneous
Browse files Browse the repository at this point in the history
  • Loading branch information
ssddOnTop committed Nov 6, 2024
1 parent 653776f commit 0dd3fd6
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions workspace/gh-workflow/src/workflow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,15 +88,7 @@ impl Workflow {
pub fn new<T: ToString>(name: T) -> Self {
Self {
name: Some(name.to_string()),
permissions: Default::default(),
on: Default::default(),
run_name: Default::default(),
jobs: Default::default(),
concurrency: Default::default(),
defaults: Default::default(),
secrets: Default::default(),
env: Default::default(),
timeout_minutes: Default::default(),
..Default::default()

Check failure on line 91 in workspace/gh-workflow/src/workflow.rs

View workflow job for this annotation

GitHub Actions / Run tests

the trait bound `Workflow: Default` is not satisfied
}
}
pub fn to_string(&self) -> Result<String> {
Expand Down

0 comments on commit 0dd3fd6

Please sign in to comment.