Skip to content

Update collection build ignores #23

Update collection build ignores

Update collection build ignores #23

Workflow file for this run

---
name: pytest
on:
pull_request:
branches:
- master
schedule:
- cron: "0 5 * * 5"
jobs:
molecule:
name: pytest
runs-on: ubuntu-latest
steps:
- name: Check out the codebase
uses: actions/checkout@v4
- name: Set up python 3
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Update ubuntu repositories
run: sudo apt-get update
- name: Install make
run: sudo apt-get install -y make
- name: Install dependencies
run: make install
- name: Debug test environment
run: make debug
- name: Install role requirements
run: make requirements
- name: Run molecule tests.
run: make test
env:
PY_COLORS: "1"
ANSIBLE_FORCE_COLOR: "1"