Merge pull request #28 from anti-social/PulseTime #24
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: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
lint: | |
name: lint & syntax check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Cache PIP | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Install role requirements | |
uses: BSFishy/pip-action@v1 | |
with: | |
requirements: "requirements.txt" | |
- name: Create ansible.cfg | |
run: "printf '[defaults]\nroles_path=./tests/requirements/:../' > ansible.cfg" | |
- name: ansible-lint | |
uses: ansible-community/[email protected] | |
- name: ansible-playbook syntax check | |
uses: dawidd6/action-ansible-playbook@3c534b3ba0bcbbee2b13fb45226f71acbaca2a76 | |
with: | |
playbook: tests/test.yml | |
directory: "." | |
requirements: tests/requirements.yml | |
options: --syntax-check -i tests/inventory | |