-
Notifications
You must be signed in to change notification settings - Fork 15
59 lines (50 loc) · 1.84 KB
/
sanity-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
name: run ibm.power_vios collection sanity tests
# run sanity test during pull request to dev-collection
on:
pull_request:
branches: [ dev-collection ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
########################################################################
# sanity test
# - makes sure that the collection passes the ansible sanity tests
########################################################################
sanity-test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ansible_collections/ibm/power_vios
strategy:
fail-fast: false
matrix:
ansible-version: ['2.9', '3', '4', '5', 'devel']
python-version: ['3.8']
include:
- ansible-version: 'devel'
python-version: '3.9'
name: running sanity tests with ansible ${{ matrix.ansible-version }} and python ${{ matrix.python-version }}
steps:
- name: checkout repository
uses: actions/checkout@v2
with:
path: ansible_collections/ibm/power_vios
- name: setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: install ansible ${{ matrix.ansible-version }}
if: ${{ matrix.ansible-version != 'devel' }}
run: |
make install-ansible ANSIBLE_VERSION=${{ matrix.ansible-version }}
- name: install ansible ${{ matrix.ansible-version }}
if: ${{ matrix.ansible-version == 'devel' }}
run: |
make install-ansible-devel-branch
- name: install sanity test requirements
run: |
make install-sanity-test-requirements
- name: run sanity test on ansible ${{ matrix.ansible-version }} and python ${{ matrix.python-version }}
run: |
make sanity-test PYTHON_VERSION=${{ matrix.python-version }}