Skip to content

Commit 4812c54

Browse files
committed
Change formatting of yaml files
yaml files reformated by `ansible-lint --fix`
1 parent e79cacb commit 4812c54

File tree

3 files changed

+55
-44
lines changed

3 files changed

+55
-44
lines changed

.editorconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,16 @@ indent_style = tab
1111

1212
[{*.yaml, *.yml}]
1313
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
1424

1525
[Makefile]
1626
indent_style = tab

.github/dependabot.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1+
---
12
# See https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
23

34
version: 2
45
updates:
5-
- package-ecosystem: "github-actions"
6-
directory: "/"
6+
- package-ecosystem: github-actions
7+
directory: /
78
schedule:
8-
interval: "monthly"
9+
interval: monthly

.github/workflows/go.yml

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,56 @@
1+
---
12
name: Go
23

34
on:
45
push:
5-
branches: [ main ]
6+
branches: [main]
67
pull_request:
7-
branches: [ main ]
8-
workflow_dispatch: { }
9-
8+
branches: [main]
9+
workflow_dispatch: {}
1010
jobs:
1111
basic:
12-
name: 'Basic health checks'
13-
runs-on: "${{ matrix.os }}"
12+
name: Basic health checks
13+
runs-on: ${{ matrix.os }}
1414
strategy:
1515
matrix:
16-
os: [ ubuntu-latest ]
16+
os: [ubuntu-latest]
1717
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"
3030
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
4040

4141
advanced:
42-
name: 'Full check code quality'
42+
name: Full check code quality
4343
runs-on: ubuntu-latest
4444
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

0 commit comments

Comments
 (0)