-
Notifications
You must be signed in to change notification settings - Fork 2
35 lines (30 loc) · 1.14 KB
/
Processor_FileExeVerifySignature.yaml
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
---
name: Test Processor FileExeVerifySignature
on:
push:
paths:
- "SharedProcessors/FileExeVerifySignature.py"
- "Test-Recipes/FileExeVerifySignature.test.recipe.yaml"
- ".github/workflows/Processor_FileExeVerifySignature.yaml"
pull_request:
paths:
- "SharedProcessors/FileExeVerifySignature.py"
- "Test-Recipes/FileExeVerifySignature.test.recipe.yaml"
- ".github/workflows/Processor_FileExeVerifySignature.yaml"
jobs:
ProcessorFileExeVerifySignature:
strategy:
matrix:
# https://ncorti.com/blog/howto-github-actions-build-matrix
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: setup-autopkg local action
uses: ./.github/actions/setup-autopkg
- name: Install requirements
run: pip install --requirement requirements.txt
- name: run recipe autopkg
run: python autopkg/Code/autopkg run -vv Test-Recipes/FileExeVerifySignature.test.recipe.yaml
# Related:
# - https://github.com/jgstew/bigfix-content/blob/master/.github/workflows/AutoPkgCoreProcessors.yaml