-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
da710ff
commit da16f97
Showing
6 changed files
with
86 additions
and
422 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
name: Ansible Lint | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
|
||
ansible-lint: | ||
name: Ansible Lint | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out the codebase | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Python. | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.x' | ||
|
||
- name: Install ansible-lint | ||
run: pip3 install ansible-lint ansible | ||
|
||
- name: Version check | ||
run: | | ||
ansible --version | ||
ansible-lint --version | ||
- name: Run ansible-lint | ||
run: ansible-lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
name: Vale Lint | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
|
||
vale-lint: | ||
name: Vale Lint | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out the codebase | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install vale | ||
run: snap install vale | ||
|
||
- name: Version check | ||
run: | | ||
vale --version | ||
- name: Run yamllint | ||
run: vale --glob='*.md' ./docs ./README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
name: YAML Lint | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
|
||
yaml-lint: | ||
name: YAML Lint | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out the codebase | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Python. | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.x' | ||
|
||
- name: Install yamllint | ||
run: pip3 install yamllint | ||
|
||
- name: Version check | ||
run: | | ||
yamllint --version | ||
- name: Run yamllint | ||
run: yamllint . |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.