package
Version:
v0.0.0-...-c33ea8f
Opens a new window with list of versions in this module.
Published: Nov 17, 2021
License: MIT
Opens a new window with license information.
Imports: 3
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Job struct {
Name string `yaml:"name"`
RunsOn string `yaml:"runs-on"`
Container string `yaml:"container"`
Steps []Step `yaml:"steps"`
}
each job in the workflow
type Step struct {
Name string `yaml:"name"`
Run string `yaml:"run"`
Uses string `yaml:"uses"`
}
each step in a job
type Workflow struct {
Name string `yaml:"name"`
On string `yaml:"on"`
Jobs map[string]Job `yaml:"jobs"`
}
the entire workflow
Source Files
¶
Click to show internal directories.
Click to hide internal directories.