Skip to content

fix: Now uses hostAlias to inject k8s hostname and IP into /etc/hosts… #31

fix: Now uses hostAlias to inject k8s hostname and IP into /etc/hosts…

fix: Now uses hostAlias to inject k8s hostname and IP into /etc/hosts… #31

Workflow file for this run

---
name: lint
# -----------------
# Control variables (GitHub Secrets)
# -----------------
#
# (n/a)
#
# -----------
# Environment (GitHub Environments)
# -----------
#
# Environment (n/a)
on:
- push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r build-requirements.txt
pip install -r requirements.txt
- name: Lint
run: |
yamllint .
find . -type f -name '*.yaml.j2' -exec yamllint {} +
ansible-lint