Skip to content

Fetch correct existing value for PulseTime command #23

Fetch correct existing value for PulseTime command

Fetch correct existing value for PulseTime command #23

Workflow file for this run

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