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 ."