浏览代码

Merge pull request #1939 from etkecc/add-ansible-lint

add ansible-lint; cleanup yamllint
pull/1947/head
Slavi Pantaleev 4 年前
committed by GitHub
父节点
当前提交
6075375f78
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 1 个文件被更改,包括 11 次插入3 次删除
  1. +11
    -3
      .github/workflows/matrix.yml

+ 11
- 3
.github/workflows/matrix.yml 查看文件

@@ -7,10 +7,18 @@ on: # yamllint disable-line rule:truthy

jobs:
yamllint:
name: 🧹 yamllint
name: yamllint
runs-on: ubuntu-latest
steps:
- name: ⤵️ Check out configuration from GitHub
- name: Check out
uses: actions/checkout@v3
- name: 🚀 Run yamllint
- name: Run yamllint
uses: frenck/action-yamllint@v1.2.0
ansible-lint:
name: ansible-lint
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
- name: Run ansible-lint
uses: ansible-community/ansible-lint-action@main

正在加载...
取消
保存