Skip to content

Merge pull request #42 from ai4os/fix_docker_conf #165

Merge pull request #42 from ai4os/fix_docker_conf

Merge pull request #42 from ai4os/fix_docker_conf #165

Workflow file for this run

---
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
nomad_test:
name: Nomad + Consul Roles Test
runs-on: ubuntu-latest
strategy:
matrix:
distro:
- rockylinux9
- ubuntu2204
steps:
- name: Check out the codebase.
uses: actions/checkout@v4
- name: Set up Python 3.
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install test dependencies.
run: pip3 install ansible molecule-plugins[docker] docker
- name: Run Molecule tests.
run: molecule test --all
working-directory: tests/nomad
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'
MOLECULE_DISTRO: ${{ matrix.distro }}