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'
|
||||
- name: "Creates virtual environment"
|
||||
run: make venv
|
||||
# Loads up the virtualenv
|
||||
- name: Activate virtualenv
|
||||
run: |
|
||||
source venv/bin/activate
|
||||
echo PATH=$PATH >> $GITHUB_ENV
|
||||
# Installs playbooks we are using
|
||||
- name: Install galaxy requirements
|
||||
run: ansible-galaxy install -r requirements.yml
|
||||
# Checks for yaml correctness
|
||||
- name: "Run YAML linting"
|
||||
run: yamllint -c .yamllint.yml .
|
||||
# Runs an *ansible specific* linter to check for mistakes
|
||||
# and or/bad patterns
|
||||
- name: "Run Ansible linting"
|
||||
run: ansible-lint
|
||||
|
|
|
@ -18,13 +18,18 @@ jobs:
|
|||
python-version: '3.10.13'
|
||||
- name: "Creates virtual environment"
|
||||
run: make venv
|
||||
# Loads up the virtualenv
|
||||
- name: Activate virtualenv
|
||||
run: |
|
||||
source venv/bin/activate
|
||||
echo PATH=$PATH >> $GITHUB_ENV
|
||||
# Installs playbooks we are using
|
||||
- name: Install galaxy requirements
|
||||
run: ansible-galaxy install -r requirements.yml
|
||||
# Checks for yaml correctness
|
||||
- name: "Run YAML linting"
|
||||
run: yamllint -c .yamllint.yml .
|
||||
# Runs an *ansible specific* linter to check for mistakes
|
||||
# and or/bad patterns
|
||||
- name: "Run Ansible linting"
|
||||
run: ansible-lint
|
||||
|
|
2
Makefile
2
Makefile
|
@ -6,4 +6,4 @@ install:
|
|||
ansible-galaxy install -r requirements.yml
|
||||
|
||||
action:
|
||||
act -W .gitea/workflows/on_pr.yml
|
||||
act -W .gitea/workflows/on_pr.yml
|
||||
|
|
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