Skip to content

Add php trixie

Add php trixie #1046

Workflow file for this run

---
# Copyright (C) 2022-2025 Maciej Delmanowski <drybjed@gmail.com>
# Copyright (C) 2022-2025 DebOps <https://debops.org/>
# SPDX-License-Identifier: GPL-3.0-or-later
# This test is used to verify DebOps codebase against 'ansible-lint' project
# using its 'main' branch, to anticipate any future changes.
# Ref: https://github.com/ansible/ansible-lint/discussions/1403#discussioncomment-2654415
# Ref: https://github.com/marketplace/actions/run-ansible-lint
name: Checking codebase using ansible-lint main branch
on: [ 'push', 'pull_request' ]
jobs:
build:
runs-on: 'ubuntu-latest'
steps:
- name: Clone the repository
uses: 'actions/checkout@v4'
- name: Install Ansible Collections for ansible-lint
run: 'make install-collections'
- name: Run ansible-lint from main branch
uses: 'ansible/ansible-lint@main'