ソースを参照

Create ansible-lint.yml

avoiding common pitfalls that can easily lead to bugs or make code harder to maintain
pull/1469/head
sakkiii 4年前
committed by GitHub
コミット
2430c14869
この署名に対応する既知のキーがデータベースに存在しません 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"

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