initial project commit

This commit is contained in:
2024-02-05 16:28:05 -05:00
commit 5861055c15
3299 changed files with 458518 additions and 0 deletions

View File

@ -0,0 +1,38 @@
name: Ansible Code Pipeline
run-name: ${{ gitea.actor }} is running Ansible Code Pipeline
on:
push:
branches:
- testing
jobs:
Ansible-Development-Pipeline:
strategy:
matrix:
os: [ ansible-dev-centos9, ansible-dev-fedora39, ansible-dev-debian11, ansible-dev-debian12 ]
runs-on: ${{ matrix.os }}
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Ansible Environment Verify
run: |
. ./.drone.env
env
git log -1
ansible --version
ansible-lint --version
# - name: Install Ansible Galaxy Dependencies
# run: |
# ansible-galaxy install -r requirements.yml
- name: Run Ansible-Lint
run: |
. ./.drone.env
ansible-lint --offline $ANSIBLE_LINT_EXCLUSION
# - name: Run Ansible-Playbook
# run: |
# . ./.drone.env
# ansible-playbook -v $ANSIBLE_INVENTORY $ANSIBLE_PLAYBOOK