Skip to content

Commit

Permalink
Change formatting of yaml files
Browse files Browse the repository at this point in the history
yaml files reformated by `ansible-lint --fix`
  • Loading branch information
xorcare committed Oct 11, 2024
1 parent 902ad7e commit ea09806
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 27 deletions.
17 changes: 9 additions & 8 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
---
# See https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "monthly"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
- package-ecosystem: gomod
directory: /
schedule:
interval: monthly
- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
38 changes: 19 additions & 19 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
---
name: Go

on:
push:
branches: [ main ]
branches: [main]
pull_request:
branches: [ main ]
branches: [main]
workflow_dispatch:

jobs:
ci:
name: Static analysis and testing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
cache: false
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
cache: false

- name: Check that all packages are compiling
run: make build
- name: Check that all packages are compiling
run: make build

- name: Run all test
run: make test
- name: Run all test
run: make test

- name: Installing tools
run: make tools
- name: Installing tools
run: make tools

- name: Run all checks
run: make check
- name: Run all checks
run: make check

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4

0 comments on commit ea09806

Please sign in to comment.