This document describes how to use actionlint as Go library.
actionlint can be used from Go programs. See the documentation to know the list of all APIs. It contains
a workflow file parser built on top of go-yaml/yaml
, expression ${{ }}
lexer/parser/checker, etc.
Followings are unexhaustive list of interesting APIs.
Command
struct represents entireactionlint
command.Command.Main
takes command line arguments and runs command until the end and returns exit status.Linter
manages linter lifecycle and applies checks to given files. If you want to run actionlint checks in your program, please use this struct.Project
andProjects
detect a project (Git repository) in a given directory path and find configuration in it.Config
represents structure ofactionlint.yaml
config file. It can be decoded by go-yaml/yaml library.Workflow
,Job
,Step
, ... are nodes of workflow syntax tree.Workflow
is a root node.Parse()
parses given contents into a workflow syntax tree. It tries to find syntax errors as much as possible and returns found errors as slice.Pass
is a visitor to traverse a workflow syntax tree. Multiple passes can be applied at single pass usingVisitor
.Rule
is an interface for rule checkers andRuneBase
is a base struct to implement a rule checker.RuleExpression
is a rule checker to check expression syntax in${{ }}
.RuleShellcheck
is a rule checker to applyshellcheck
command torun:
sections and collect errors from it.RuleJobNeeds
is a rule checker to check dependencies inneeds:
section. It can detect cyclic dependencies.- ...
ExprLexer
lexes expression syntax in${{ }}
and returns slice ofToken
.ExprParser
parses given slice ofToken
and returns syntax tree for expression in${{ }}
.ExprNode
is an interface for nodes in the expression syntax tree.ExprType
is an interface of types in expression syntax${{ }}
.ObjectType
,ArrayType
,StringType
,NumberType
, ... are structs to represent actual types of expression.ExprSemanticsChecker
checks semantics of expression syntax${{ }}
. It traverses given expression syntax tree and deduces its type, checking types and resolving variables (contexts).ValidateRefGlob()
andValidatePathGlob()
validate glob filter pattern and returns all errors found by the validator.ActionMetadata
is a struct for action metadata file (action.yml
). It is used to check inputs specified atwith:
and typingsteps.{id}.outputs
object strictly.PopularActions
global variable is data set of popular actions' metadata collected by the script.
Note that the version of this repository is for command line tool actionlint
. So it does not represent version of the
library. It means that patch version bump may introduce some breaking changes.
Checks | Installation | Usage | Configuration | References