mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-01-09 04:45:19 +00:00
25dfbdf1d7
Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
31 lines
666 B
YAML
31 lines
666 B
YAML
# SPDX-FileCopyrightText: 2022 MDAD Team and contributors
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
---
|
|
name: Matrix CI
|
|
|
|
on: # yamllint disable-line rule:truthy
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
yamllint:
|
|
name: yamllint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out
|
|
uses: actions/checkout@v4
|
|
- name: Run yamllint
|
|
uses: frenck/action-yamllint@v1.5.0
|
|
ansible-lint:
|
|
name: ansible-lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out
|
|
uses: actions/checkout@v4
|
|
- name: Run ansible-lint
|
|
uses: ansible-community/ansible-lint-action@v6.17.0
|
|
with:
|
|
path: roles/custom
|