forked from alexey-ban/ai-dial-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
77 lines (73 loc) · 2.29 KB
/
python_package_pr.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: Python Package PR workflow
on:
workflow_call:
inputs:
bypass_checks:
type: boolean
default: false
description: Do not fail pipeline if checks failed
enable_style_checks:
type: boolean
default: true
description: Enable style_checks
bypass_style_checks:
type: boolean
default: false
description: Do not fail pipeline if style_checks failed
enable_code_checks:
type: boolean
default: true
description: Enable code_checks
bypass_code_checks:
type: boolean
default: false
description: Do not fail pipeline if code_checks failed
enable_ort:
type: boolean
default: true
description: Enable ORT scanning
bypass_ort:
type: boolean
default: false
description: Do not fail pipeline if ORT scan failed
enable_trivy:
type: boolean
default: true
description: Enable Trivy scanning
bypass_trivy:
type: boolean
default: false
description: Do not fail pipeline if Trivy failed
python_version:
type: string
default: "3.11"
description: Python version to use
test_python_versions:
type: string
description: Python versions to run tests against
default: '["3.8", "3.9", "3.10", "3.11"]'
env:
IMAGE_NAME: ${{ github.repository }}
jobs:
test:
uses: ./.github/workflows/python_package_test.yml
with:
bypass_checks: ${{ inputs.bypass_checks }}
enable_style_checks: ${{ inputs.enable_style_checks }}
bypass_style_checks: ${{ inputs.bypass_style_checks }}
enable_code_checks: ${{ inputs.enable_code_checks }}
bypass_code_checks: ${{ inputs.bypass_code_checks }}
enable_ort: ${{ inputs.enable_ort }}
bypass_ort: ${{ inputs.bypass_ort }}
python_version: ${{ inputs.python_version }}
test_python_versions: ${{ inputs.test_python_versions }}
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
lfs: true
- uses: alexey-ban/ai-dial-ci/actions/python_prepare@main
with:
python_version: ${{ inputs.python_version }}
- run: make build