Skip to content

Update readme and test lint Github Actions #4

Update readme and test lint Github Actions

Update readme and test lint Github Actions #4

Workflow file for this run

name: YAML Lint Check
on:
pull_request:
branches:
- "*"
jobs:
yaml-lint:
runs-on: ubuntu-latest
steps:
- name: Code Checkout
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
architecture: 'x64'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install yamllint
- name: Validate Manifests
run: yamllint . -f github