Skip to content

Fix #11 - Python PIP issue with Digital Ocean #125

Fix #11 - Python PIP issue with Digital Ocean

Fix #11 - Python PIP issue with Digital Ocean #125

Workflow file for this run

---
name: CI
'on':
pull_request:
push:
branches:
- main
tags:
- '*'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out the codebase.
uses: actions/checkout@v4
- name: Set up Python 3.
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install test dependencies.
run: pip3 install yamllint ansible-lint
- name: Run YAML Lint.
run: yamllint .
- name: Run ansible-lint.
run: ansible-lint ./roles/
molecule:
name: Molecule
runs-on: ubuntu-latest
strategy:
matrix:
distro:
- ubuntu2204
- ubuntu2404
steps:
- name: Check out the codebase.
uses: actions/checkout@v4
- name: Set up Python 3.
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install test dependencies.
run: pip3 install -r requirements.txt
- name: Run Molecule tests.
run: molecule test
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'
MOLECULE_DISTRO: ${{ matrix.distro }}
release:
if: ${{ github.ref_type == 'tag' }}
needs: [lint, molecule]
uses: ./.github/workflows/release.yml
secrets: inherit