-
Notifications
You must be signed in to change notification settings - Fork 7
40 lines (37 loc) · 1.08 KB
/
test.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
name: Run salt tests
on:
pull_request:
concurrency:
group: test-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
linux:
uses: plus3it/actions-workflows/.github/workflows/test-salt-linux.yml@2cd3620aa18aa840bd92e788978ad08d6663a0d4
strategy:
matrix:
os_version:
- 7
- 8
salt_state:
- nessus-agent
salt_pillar_root:
- ./tests/pillar/test-nessus-agent
with:
salt-os-version: ${{ matrix.os_version }}
salt-state: ${{ matrix.salt_state }}
salt-pillar-root: ${{ matrix.salt_pillar_root }}
windows:
uses: plus3it/actions-workflows/.github/workflows/test-salt-windows.yml@2cd3620aa18aa840bd92e788978ad08d6663a0d4
strategy:
matrix:
os_version:
- windows-2019
- windows-2022
salt_state:
- nessus-agent
salt_pillar_root:
- ./tests/pillar/test-nessus-agent
with:
salt-os-version: ${{ matrix.os_version }}
salt-state: ${{ matrix.salt_state }}
salt-pillar-root: ${{ matrix.salt_pillar_root }}