File tree Expand file tree Collapse file tree 2 files changed +28
-27
lines changed Expand file tree Collapse file tree 2 files changed +28
-27
lines changed Original file line number Diff line number Diff line change 1+ ---
12# See https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
23
34version : 2
45updates :
5- - package-ecosystem : " gomod"
6- directory : " / "
7- schedule :
8- interval : " monthly"
9- - package-ecosystem : " github-actions"
10- directory : " / "
11- schedule :
12- interval : " monthly"
6+ - package-ecosystem : gomod
7+ directory : /
8+ schedule :
9+ interval : monthly
10+ - package-ecosystem : github-actions
11+ directory : /
12+ schedule :
13+ interval : monthly
Original file line number Diff line number Diff line change 1+ ---
12name : Go
23
34on :
45 push :
5- branches : [ main ]
6+ branches : [main]
67 pull_request :
7- branches : [ main ]
8+ branches : [main]
89 workflow_dispatch :
9-
1010jobs :
1111 ci :
1212 name : Static analysis and testing
1313 runs-on : ubuntu-latest
1414 steps :
15- - uses : actions/checkout@v4
15+ - uses : actions/checkout@v4
1616
17- - name : Set up Go
18- uses : actions/setup-go@v5
19- with :
20- go-version : ' 1.21'
21- cache : false
17+ - name : Set up Go
18+ uses : actions/setup-go@v5
19+ with :
20+ go-version : " 1.21"
21+ cache : false
2222
23- - name : Check that all packages are compiling
24- run : make build
23+ - name : Check that all packages are compiling
24+ run : make build
2525
26- - name : Run all test
27- run : make test
26+ - name : Run all test
27+ run : make test
2828
29- - name : Installing tools
30- run : make tools
29+ - name : Installing tools
30+ run : make tools
3131
32- - name : Run all checks
33- run : make check
32+ - name : Run all checks
33+ run : make check
3434
35- - name : Upload coverage reports to Codecov
36- uses : codecov/codecov-action@v4
35+ - name : Upload coverage reports to Codecov
36+ uses : codecov/codecov-action@v4
You can’t perform that action at this time.
0 commit comments