Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Add renovate config for xnat plugins #32

Add renovate config for xnat plugins

Add renovate config for xnat plugins #32

Workflow file for this run

name: Molecule Test
on:
pull_request:
push:
branches:
- main
jobs:
molecule:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
scenario:
- centos7
- rocky9
env:
PY_COLORS: 1
ANSIBLE_FORCE_COLOR: 1
steps:
- name: Check out the codebase
uses: actions/checkout@v4
with:
path: ansible_collections/mirsg/xnat
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install test dependencies
run: |
sudo apt-get update && sudo apt-get -y install rsync
python3 -m pip install --upgrade pip
python3 -m pip install ansible molecule molecule-plugins[docker] docker requests
- name: Test with molecule
run: |
cd ansible_collections/mirsg/xnat/tests
molecule converge --scenario-name "${{ matrix.scenario }}"