-
Notifications
You must be signed in to change notification settings - Fork 4
53 lines (48 loc) · 1.52 KB
/
main.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
name: Pure Storage Ansible CI
"on":
pull_request:
push:
schedule:
- cron: '25 10 * * *'
jobs:
build:
name: Build pure1 on Ansible ${{ matrix.ansible }} (Python ${{ matrix.python-version }})
runs-on: ubuntu-20.04
strategy:
matrix:
ansible:
- stable-2.15
- stable-2.16
- stable-2.17
- devel
python-version:
- 3.9
- "3.10"
- "3.11"
exclude:
- python-version: 3.9
ansible: stable-2.16
- python-version: 3.9
ansible: stable-2.17
- python-version: 3.9
ansible: devel
- python-version: "3.10"
ansible: devel
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python${{ matrix.python }} -m pip install --upgrade pip
python${{ matrix.python }} -m pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check
- name: Run sanity tests
run: |
pwd
mkdir -p ansible_collections/purestorage/pure1
rsync -av . ansible_collections/purestorage/pure1 --exclude ansible_collection/purestorage/pure1
cd ansible_collections/purestorage/pure1
ansible-test sanity -v --color --python ${{ matrix.python-version }} --docker