diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ansible-lint.yml | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/.github/workflows/ansible-lint.yml b/.github/workflows/ansible-lint.yml deleted file mode 100644 index cc0913c..0000000 --- a/.github/workflows/ansible-lint.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: ansible-lint -on: - push: - branches: - - master - pull_request: - branches: - - master -jobs: - build: - name: Ansible Lint - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v3 - - name: Setup Python - uses: actions/setup-python@v4 - - name: Install ansible-lint - run: | - python -m pip install --upgrade pip - pip install ansible-lint - - name: Run ansible-lint - run: ansible-lint . |