Skip to content

adjust tests for v3 #907

adjust tests for v3

adjust tests for v3 #907

Workflow file for this run

name: Sanity
on:
push:
branches:
- master
schedule:
- cron: "5 12 * * 2"
pull_request:
workflow_call:
workflow_dispatch:
jobs:
sanity:
name: Sanity (${{ matrix.ansible }})
defaults:
run:
working-directory: ansible_collections/ngine_io/cloudstack
strategy:
fail-fast: false
matrix:
ansible:
# - stable-2.15
# - stable-2.16
- stable-2.17
# - devel
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/checkout@v4
with:
path: ansible_collections/ngine_io/cloudstack
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install ansible-base (${{ matrix.ansible }})
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check
- name: Run sanity tests
run: ansible-test sanity --docker -v --color