forked from CCCHH/ansible-infra
		
	
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
# Links & Resources:
 | 
						|
# https://github.com/ansible/ansible-lint?tab=readme-ov-file#using-ansible-lint-as-a-github-action
 | 
						|
# https://github.com/ansible/ansible-lint/blob/main/action.yml
 | 
						|
on:
 | 
						|
  pull_request:
 | 
						|
  push:
 | 
						|
 | 
						|
jobs:
 | 
						|
  ansible-lint:
 | 
						|
    name: Ansible Lint
 | 
						|
    runs-on: docker
 | 
						|
    steps:
 | 
						|
      - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
 | 
						|
      - name: Install pip
 | 
						|
        run: |
 | 
						|
          apt update
 | 
						|
          apt install -y pip
 | 
						|
      - name: Install python jmespath
 | 
						|
        run: |
 | 
						|
          pip install jmespath
 | 
						|
        env:
 | 
						|
          PIP_BREAK_SYSTEM_PACKAGES: 1
 | 
						|
      # Don't let it setup python as the then called setup-python action doesn't
 | 
						|
      # work in our environmnet.
 | 
						|
      # Rather manually setup python (pip) before instead.
 | 
						|
      - name: Run ansible-lint
 | 
						|
        uses: https://github.com/ansible/ansible-lint@d7cd7cfa2469536527aceaef9ef2ec6f2fb331cb # v25.9.2
 | 
						|
        with:
 | 
						|
          setup_python: "false"
 | 
						|
          requirements_file: "requirements.yml"
 | 
						|
        env:
 | 
						|
          PIP_BREAK_SYSTEM_PACKAGES: 1
 |