Add proxmox 8 support #6
Workflow file for this run
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 | |
env: | |
ROLE_NAME: python | |
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 | |
- uses: satackey/[email protected] | |
continue-on-error: true | |
- 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 | |