From 7feeaa467d62828196703c2ad6580ea2c18a0fc5 Mon Sep 17 00:00:00 2001 From: Jordan Layfield Date: Mon, 12 May 2025 16:03:35 +0100 Subject: [PATCH] remove lint-ansible-role.yml NO_JIRA --- .github/workflows/lint-ansible-role.yml | 30 ------------------------- 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/lint-ansible-role.yml diff --git a/.github/workflows/lint-ansible-role.yml b/.github/workflows/lint-ansible-role.yml deleted file mode 100644 index 6c49782..0000000 --- a/.github/workflows/lint-ansible-role.yml +++ /dev/null @@ -1,30 +0,0 @@ ---- -name: Lint - -on: [pull_request] - -jobs: - lint: - name: Linting - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - - name: Setup Python - uses: actions/setup-python@v1 - with: - python-version: 3.9 - architecture: x64 - - - name: Checkout - uses: actions/checkout@main - - - name: Install linters - run: pip install ansible ansible-lint yamllint - - - name: Run ansible-lint - run: "ansible-lint ." - - - name: Run yamllint - run: "yamllint ."