Skip to content

chore(deps): update dependencies (minor) #293

chore(deps): update dependencies (minor)

chore(deps): update dependencies (minor) #293

Workflow file for this run

---
name: CI
'on':
pull_request:
push:
branches:
- main
schedule:
- cron: '30 1 * * 3'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out the codebase
uses: actions/checkout@v4
- name: Set up Python 3
uses: actions/setup-python@v5
with:
python-version: '3.14'
- name: Install test dependencies
run: pip install ansible-lint[community,yamllint]
- name: Lint code
run: |
yamllint .
ansible-lint
molecule:
name: Molecule
runs-on: ubuntu-latest
defaults:
run:
working-directory: "${{ github.repository }}"
needs:
- lint
strategy:
fail-fast: false
matrix:
include:
- distro: ubuntu2004
scenario: 'default'
- distro: ubuntu2204
scenario: 'default'
ansible-version: '>=2.11.5'
- distro: ubuntu2404
scenario: 'default'
- distro: ubuntu2204
scenario: 'jupyter-system'
platform: instance-jupyter-system
- distro: rockylinux8
scenario: 'default'
- distro: rockylinux9
scenario: 'default'
steps:
- name: Check out the codebase
uses: actions/checkout@v4
with:
path: "${{ github.repository }}"
- name: Set up Python 3
uses: actions/setup-python@v5
with:
python-version: '3.14'
- name: Install test dependencies
run: pip install -r requirements.txt
- name: Run Molecule tests
run: |
molecule test -s "${{ matrix.scenario }}" --platform-name ${MOLECULE_PLATFORM:-instance}
env:
ANSIBLE_FORCE_COLOR: '1'
ANSIBLE_VERBOSITY: '2'
MOLECULE_DEBUG: '1'
MOLECULE_DISTRO: "${{ matrix.distro }}"
MOLECULE_PLATFORM: "${{ matrix.platform }}"
PY_COLORS: '1'