Split handling of HTTP and HTTPS #16
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 lint | |
on: # noqa yaml | |
- push | |
- pull_request | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install dependencies | |
run: pip3 install ansible ansible-lint yamllint | |
- name: lint playbook | |
run: yamllint -c .yamllint . && ansible-lint |