upgrade(README): Improve README, clarify instructions and add documentation links
All checks were successful
Master branch: build & lint / build (push) Successful in 1m8s
All checks were successful
Master branch: build & lint / build (push) Successful in 1m8s
This commit is contained in:
parent
93bb0b0742
commit
4667b5de57
4 changed files with 72 additions and 14 deletions
|
@ -16,13 +16,18 @@ jobs:
|
||||||
python-version: '3.10.13'
|
python-version: '3.10.13'
|
||||||
- name: "Creates virtual environment"
|
- name: "Creates virtual environment"
|
||||||
run: make venv
|
run: make venv
|
||||||
|
# Loads up the virtualenv
|
||||||
- name: Activate virtualenv
|
- name: Activate virtualenv
|
||||||
run: |
|
run: |
|
||||||
source venv/bin/activate
|
source venv/bin/activate
|
||||||
echo PATH=$PATH >> $GITHUB_ENV
|
echo PATH=$PATH >> $GITHUB_ENV
|
||||||
|
# Installs playbooks we are using
|
||||||
- name: Install galaxy requirements
|
- name: Install galaxy requirements
|
||||||
run: ansible-galaxy install -r requirements.yml
|
run: ansible-galaxy install -r requirements.yml
|
||||||
|
# Checks for yaml correctness
|
||||||
- name: "Run YAML linting"
|
- name: "Run YAML linting"
|
||||||
run: yamllint -c .yamllint.yml .
|
run: yamllint -c .yamllint.yml .
|
||||||
|
# Runs an *ansible specific* linter to check for mistakes
|
||||||
|
# and or/bad patterns
|
||||||
- name: "Run Ansible linting"
|
- name: "Run Ansible linting"
|
||||||
run: ansible-lint
|
run: ansible-lint
|
||||||
|
|
|
@ -18,13 +18,18 @@ jobs:
|
||||||
python-version: '3.10.13'
|
python-version: '3.10.13'
|
||||||
- name: "Creates virtual environment"
|
- name: "Creates virtual environment"
|
||||||
run: make venv
|
run: make venv
|
||||||
|
# Loads up the virtualenv
|
||||||
- name: Activate virtualenv
|
- name: Activate virtualenv
|
||||||
run: |
|
run: |
|
||||||
source venv/bin/activate
|
source venv/bin/activate
|
||||||
echo PATH=$PATH >> $GITHUB_ENV
|
echo PATH=$PATH >> $GITHUB_ENV
|
||||||
|
# Installs playbooks we are using
|
||||||
- name: Install galaxy requirements
|
- name: Install galaxy requirements
|
||||||
run: ansible-galaxy install -r requirements.yml
|
run: ansible-galaxy install -r requirements.yml
|
||||||
|
# Checks for yaml correctness
|
||||||
- name: "Run YAML linting"
|
- name: "Run YAML linting"
|
||||||
run: yamllint -c .yamllint.yml .
|
run: yamllint -c .yamllint.yml .
|
||||||
|
# Runs an *ansible specific* linter to check for mistakes
|
||||||
|
# and or/bad patterns
|
||||||
- name: "Run Ansible linting"
|
- name: "Run Ansible linting"
|
||||||
run: ansible-lint
|
run: ansible-lint
|
||||||
|
|
74
README.md
74
README.md
File diff suppressed because one or more lines are too long
Loading…
Add table
Reference in a new issue