Bump ansible-core from 2.17.6 to 2.17.7 #62
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: molecule | |
on: | |
pull_request: | |
branches: | |
- master | |
defaults: | |
run: | |
working-directory: 'nephelaiio.nfs' | |
jobs: | |
molecule: | |
name: molecule | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
scenario: | |
- name: default | |
image: | |
- name: ubuntu2204 | |
command: /lib/systemd/systemd | |
- name: ubuntu2004 | |
command: /lib/systemd/systemd | |
- name: ubuntu1804 | |
command: /lib/systemd/systemd | |
- name: debian12 | |
command: /lib/systemd/systemd | |
- name: debian11 | |
command: /lib/systemd/systemd | |
- name: rockylinux9 | |
command: /usr/lib/systemd/systemd | |
steps: | |
- name: Check out the codebase | |
uses: actions/checkout@v4 | |
with: | |
path: 'nephelaiio.nfs' | |
- name: Set up python 3 | |
uses: actions/setup-python@v5 | |
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 poetry | |
- name: Debug Docker version | |
run: docker --version | |
- name: Debug Docker version | |
run: docker ps | |
- name: Debug test environment | |
run: make debug | |
- name: Run molecule tests. | |
run: make test | |
env: | |
PY_COLORS: '1' | |
ANSIBLE_FORCE_COLOR: '1' | |
MOLECULE_DOCKER_IMAGE: ${{ matrix.image.name }} | |
MOLECULE_DOCKER_COMMAND: ${{ matrix.image.command }} | |
MOLECULE_SCENARIO: ${{ matrix.scenario.name }} |