forked from rhysd/actionlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_test.go
112 lines (94 loc) · 2.74 KB
/
example_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
package actionlint_test
import (
"bytes"
"fmt"
"os"
"path/filepath"
"github.com/rhysd/actionlint"
)
func ExampleLinter() {
// Specify linter options
o := &actionlint.LinterOptions{
IgnorePatterns: []string{`'label ".+" is unknown'`},
// Other options...
}
// Create Linter instance which outputs errors to stdout
l, err := actionlint.NewLinter(os.Stdout, o)
if err != nil {
panic(err)
}
// File to check
f := filepath.Join("testdata", "examples", "main.yaml")
// First return value is an array of lint errors found in the workflow files. The second return
// value is an error of actionlint itself. This call outputs the lint errors to stdout. Use
// io.Discard to prevent the output.
//
// There are several methods to run linter.
// - LintFile: Check the given single file
// - LintFiles: Check the given multiple files
// - LintDir: Check all workflow files in the given single directory recursively
// - LintRepository: Check all workflow files under .github/workflows in the given repository
// - Lint: Check the given workflow content assuming the given file path
errs, err := l.LintFile(f, nil)
if err != nil {
panic(err)
}
fmt.Println(len(errs), "lint errors found by actionlint")
}
func ExampleErrorFormatter() {
// Errors returned from Linter methods
errs := []*actionlint.Error{
{
Message: "error message 1",
Filepath: "foo.yaml",
Line: 1,
Column: 4,
Kind: "rule1",
},
{
Message: "error message 2",
Filepath: "foo.yaml",
Line: 3,
Column: 1,
Kind: "rule2",
},
}
// Create ErrorFormatter instance with template
f, err := actionlint.NewErrorFormatter(`{{range $ := .}}{{$.Filepath}}:{{$.Line}}:{{$.Column}}: {{$.Message}}\n{{end}}`)
if err != nil {
// Some error happened while creating the formatter (e.g. syntax error)
panic(err)
}
src := `on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: echo
`
// Prints all errors to stdout following the template
if err := f.PrintErrors(os.Stdout, errs, []byte(src)); err != nil {
panic(err)
}
// Output:
// foo.yaml:1:4: error message 1
// foo.yaml:3:1: error message 2
}
func ExampleCommand() {
// Write command output to this buffer
var output bytes.Buffer
// Create command instance populating stdin/stdout/stderr
cmd := actionlint.Command{
Stdin: os.Stdin,
Stdout: &output,
Stderr: &output,
}
// Run the command end-to-end. Note that given args should contain program name
workflow := filepath.Join(".github", "workflows", "release.yaml")
status := cmd.Main([]string{"actionlint", "-shellcheck=", "-pyflakes=", workflow})
fmt.Println("Exited with status", status)
// Output: Exited with status 0
if status != 0 {
panic("actionlint command failed: " + output.String())
}
}