Skip to content
This repository has been archived by the owner on Sep 7, 2023. It is now read-only.

ci(tools): update actionhippie/ansible-doctor action to v2 #14

ci(tools): update actionhippie/ansible-doctor action to v2

ci(tools): update actionhippie/ansible-doctor action to v2 #14

Workflow file for this run

---
name: general
"on":
workflow_dispatch:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
linting:
runs-on: ubuntu-latest
if: github.repository_owner == 'rolehippie'
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Role linting
uses: actionhippie/ansible-later@v2
testing:
runs-on: ubuntu-latest
if: github.repository_owner == 'rolehippie'
strategy:
fail-fast: false
matrix:
scenario:
- default
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Install dependencies
run: pip3 install docker pytest-testinfra ansible molecule molecule-plugins[docker]
- name: Molecule tests
run: molecule test --scenario-name ${{ matrix.scenario }}
env:
PY_COLORS: "1"
ANSIBLE_FORCE_COLOR: "1"
...