This commit is contained in:
22
.gitea/workflows/yamllint.yml
Normal file
22
.gitea/workflows/yamllint.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
name: YAML Lint
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main, dev ]
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
yamllint:
|
||||
runs-on: docker
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install yamllint
|
||||
run: |
|
||||
apk add --no-cache python3 py3-pip
|
||||
pip install --no-cache-dir yamllint
|
||||
|
||||
- name: Run yamllint
|
||||
run: |
|
||||
yamllint .
|
||||
3
.vscode/settings.json
vendored
Normal file
3
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"ansible.python.interpreterPath": "/opt/homebrew/bin/python3"
|
||||
}
|
||||
Reference in New Issue
Block a user