Skip to content

Commit ea09806

Browse files
committed
Change formatting of yaml files
yaml files reformated by `ansible-lint --fix`
1 parent 902ad7e commit ea09806

File tree

2 files changed

+28
-27
lines changed

2 files changed

+28
-27
lines changed

‎.github/dependabot.yml‎

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
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: "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

‎.github/workflows/go.yml‎

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

34
on:
45
push:
5-
branches: [ main ]
6+
branches: [main]
67
pull_request:
7-
branches: [ main ]
8+
branches: [main]
89
workflow_dispatch:
9-
1010
jobs:
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

0 commit comments

Comments
 (0)