-
Notifications
You must be signed in to change notification settings - Fork 2
74 lines (58 loc) · 1.59 KB
/
ci.yml
File metadata and controls
74 lines (58 loc) · 1.59 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: CI
on:
pull_request:
branches: [ master ]
jobs:
ansible-syntax:
runs-on: ubuntu-latest
name: Ansible Syntax Check
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install Ansible
run: |
python -m pip install --upgrade pip
pip install ansible ansible-lint
- name: Install PAN-OS collection
run: |
ansible-galaxy collection install paloaltonetworks.panos
- name: Ansible syntax check
run: |
find playbooks -name "*.yml" -exec ansible-playbook --syntax-check {} \;
- name: Ansible lint
run: |
ansible-lint playbooks/
python-tests:
runs-on: ubuntu-latest
name: Python Filter Tests
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Run custom filter tests
run: |
cd filter_plugins
python -m pytest test_custom_filters.py -v
secrets-scan:
runs-on: ubuntu-latest
name: Secrets Scanning
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run GitLeaks
uses: gitleaks/gitleaks-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}