File tree Expand file tree Collapse file tree 3 files changed +55
-44
lines changed Expand file tree Collapse file tree 3 files changed +55
-44
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,16 @@ indent_style = tab
11
11
12
12
[{* .yaml, * .yml} ]
13
13
indent_size = 2
14
+ ij_yaml_align_values_properties = do_not_align
15
+ ij_yaml_autoinsert_sequence_marker = true
16
+ ij_yaml_block_mapping_on_new_line = false
17
+ ij_yaml_indent_sequence_value = true
18
+ ij_yaml_keep_indents_on_empty_lines = false
19
+ ij_yaml_keep_line_breaks = true
20
+ ij_yaml_sequence_on_new_line = false
21
+ ij_yaml_space_before_colon = false
22
+ ij_yaml_spaces_within_braces = false
23
+ ij_yaml_spaces_within_brackets = false
14
24
15
25
[Makefile ]
16
26
indent_style = tab
Original file line number Diff line number Diff line change
1
+ ---
1
2
# See https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
2
3
3
4
version : 2
4
5
updates :
5
- - package-ecosystem : " github-actions"
6
- directory : " / "
6
+ - package-ecosystem : github-actions
7
+ directory : /
7
8
schedule :
8
- interval : " monthly"
9
+ interval : monthly
Original file line number Diff line number Diff line change
1
+ ---
1
2
name : Go
2
3
3
4
on :
4
5
push :
5
- branches : [ main ]
6
+ branches : [main]
6
7
pull_request :
7
- branches : [ main ]
8
- workflow_dispatch : { }
9
-
8
+ branches : [main]
9
+ workflow_dispatch : {}
10
10
jobs :
11
11
basic :
12
- name : ' Basic health checks'
13
- runs-on : " ${{ matrix.os }}"
12
+ name : Basic health checks
13
+ runs-on : ${{ matrix.os }}
14
14
strategy :
15
15
matrix :
16
- os : [ ubuntu-latest ]
16
+ os : [ubuntu-latest]
17
17
go :
18
- - ' 1.11'
19
- - ' 1.12'
20
- - ' 1.13'
21
- - ' 1.14'
22
- - ' 1.15'
23
- - ' 1.16'
24
- - ' 1.17'
25
- - ' 1.18'
26
- - ' 1.19'
27
- - ' 1.20'
28
- - ' 1.21'
29
- - ' 1.22'
18
+ - " 1.11"
19
+ - " 1.12"
20
+ - " 1.13"
21
+ - " 1.14"
22
+ - " 1.15"
23
+ - " 1.16"
24
+ - " 1.17"
25
+ - " 1.18"
26
+ - " 1.19"
27
+ - " 1.20"
28
+ - " 1.21"
29
+ - " 1.22"
30
30
steps :
31
- - uses : actions/checkout@v4
32
- - name : " Set up Go:${{ matrix.go }}"
33
- uses : actions/setup-go@v5
34
- with :
35
- go-version : ' ${{ matrix.go }}'
36
- - name : Make build
37
- run : make build
38
- - name : Make test
39
- run : make test
31
+ - uses : actions/checkout@v4
32
+ - name : Set up Go:${{ matrix.go }}
33
+ uses : actions/setup-go@v5
34
+ with :
35
+ go-version : ${{ matrix.go }}
36
+ - name : Make build
37
+ run : make build
38
+ - name : Make test
39
+ run : make test
40
40
41
41
advanced :
42
- name : ' Full check code quality'
42
+ name : Full check code quality
43
43
runs-on : ubuntu-latest
44
44
steps :
45
- - uses : actions/checkout@v4
46
- - name : " Set up Go"
47
- uses : actions/setup-go@v5
48
- with :
49
- go-version : ' 1.21'
50
- - name : Make check
51
- run : make check
52
- - uses : codecov/codecov-action@v4
53
- with :
54
- token : ${{ secrets.CODECOV_TOKEN }}
55
- files : coverage.out
56
- verbose : true
45
+ - uses : actions/checkout@v4
46
+ - name : Set up Go
47
+ uses : actions/setup-go@v5
48
+ with :
49
+ go-version : " 1.21"
50
+ - name : Make check
51
+ run : make check
52
+ - uses : codecov/codecov-action@v4
53
+ with :
54
+ token : ${{ secrets.CODECOV_TOKEN }}
55
+ files : coverage.out
56
+ verbose : true
You can’t perform that action at this time.
0 commit comments