ansible-collection-prometheus/.github/workflows/ansible-test-integration.yml
gardar 118ec7b31f
fix: pass github token from ci to molecule
Signed-off-by: gardar <gardar@users.noreply.github.com>
2023-04-26 16:01:21 +00:00

41 lines
1.4 KiB
YAML

---
name: Ansible Integration Test
on:
workflow_call:
inputs:
targets:
required: true
type: string
ansible-core-versions:
required: false
default: '["stable-2.14"]'
type: string
target-python-versions:
required: false
default: '["default"]'
type: string
jobs:
ansible-test-integration:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
targets: ${{ fromJson(inputs.targets) }}
ansible-core-versions: ${{ fromJson(inputs.ansible-core-versions) }}
target-python-versions: ${{ fromJson(inputs.target-python-versions) }}
name: "${{ matrix.targets.name }}-${{ matrix.ansible-core-versions }}"
steps:
- name: "Perform ${{ matrix.targets.test }} integration test with ansible-test"
uses: ansible-community/ansible-test-gh-action@release/v1
with:
ansible-core-version: ${{ matrix.ansible-core-versions }}
target-python-version: ${{ matrix.target-python-versions }}
controller-python-version: auto
docker-image: "--docker-privileged" # Workaround because ansible-test action doesn't support setting privileged flag
testing-type: integration
target: ${{ matrix.targets.test }}
# coverage: never # https://github.com/ansible-community/ansible-test-gh-action/pull/50
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"