diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d30f881..4c589e7 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,3 +1,4 @@ +--- version: 2 updates: - package-ecosystem: "gomod" diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 68ac298..7d364c8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -41,3 +41,9 @@ jobs: - uses: "actions/checkout@v3.3.0" - uses: "actions/setup-go@v4" - run: "go test ./..." + + yamllint: + runs-on: "ubuntu-latest" + steps: + - uses: "actions/checkout@v3.3.0" + - uses: "ibiqlik/action-yamllint@v3" diff --git a/.yamllint b/.yamllint new file mode 100644 index 0000000..3c1e7de --- /dev/null +++ b/.yamllint @@ -0,0 +1,14 @@ +--- +extends: 'default' + +ignore: |- + /dist/ + +rules: + empty-values: 'enable' + indentation: + spaces: 2 + line-length: 'disable' + quoted-strings: 'enable' + truthy: + check-keys: false