ソースを参照

Merge pull request #1469 from sakkiii/patch-4

ansible lint workflow
pull/1471/head
Slavi Pantaleev 4年前
committed by GitHub
コミット
067bea25a8
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更19行の追加0行の削除
  1. +19
    -0
      .github/workflows/ansible-lint.yml

+ 19
- 0
.github/workflows/ansible-lint.yml ファイルの表示

@@ -0,0 +1,19 @@
name: Ansible Lint

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Lint Ansible Playbook
uses: ansible/ansible-lint-action@master
with:
# Paths to ansible files (i.e., playbooks, tasks, handlers etc..)
targets: "./"

args: "-x metadata, formatting"

読み込み中…
キャンセル
保存