ci: auto merge dependabot prs #73
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ansible | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
Lint: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: "ansible-sdv-pipeline" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.x | |
uses: actions/setup-python@v3 | |
with: | |
python-version: 3.x | |
- name: Install Ansible-lint | |
run: | | |
python -m pip install --upgrade pip | |
pip install ansible-lint | |
- name: Running Ansible-lint | |
run: ansible-lint ./* |