Skip to content

Set hostname

Set hostname #36

Workflow file for this run

---
name: ansible-lint-local
on:
pull_request:
push:
branches:
- master
- develop
- feature/**
jobs:
ansible-lint-local:
name: ansible-lint-local
runs-on: ubuntu-latest
steps:
- name: Check out the codebase.
uses: actions/checkout@v3
- name: Set up Python 3.
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install test dependencies.
run: pip3 install yamllint ansible-lint ansible
- name: Lint code.
run: |
set -e
yamllint .
ansible-lint .