-
Notifications
You must be signed in to change notification settings - Fork 7
64 lines (58 loc) · 1.62 KB
/
standard.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
name: PCDS Standard Testing
on:
push:
pull_request:
release:
types:
- created
jobs:
pre-commit:
name: "pre-commit checks"
uses: pcdshub/pcds-ci-helpers/.github/workflows/pre-commit.yml@master
with:
args: "--all-files"
conda-test:
strategy:
fail-fast: false
matrix:
include:
- python-version: "3.9"
deploy-on-success: true
- python-version: "3.10"
- python-version: "3.11"
experimental: true
- python-version: "3.12"
experimental: true
name: "Conda"
uses: pcdshub/pcds-ci-helpers/.github/workflows/python-conda-test.yml@master
secrets: inherit
with:
package-name: "pyca"
python-version: ${{ matrix.python-version }}
experimental: ${{ matrix.experimental || false }}
deploy-on-success: ${{ matrix.deploy-on-success || false }}
testing-extras: ""
system-packages: ""
use-setuptools-scm: true
pip-test:
strategy:
fail-fast: false
matrix:
include:
- python-version: "3.9"
deploy-on-success: true
- python-version: "3.10"
- python-version: "3.11"
experimental: true
- python-version: "3.12"
experimental: true
name: "Pip"
uses: pcdshub/pcds-ci-helpers/.github/workflows/python-pip-test.yml@master
secrets: inherit
with:
package-name: "pyca"
python-version: ${{ matrix.python-version }}
experimental: ${{ matrix.experimental || false }}
deploy-on-success: ${{ matrix.deploy-on-success || false }}
system-packages: ""
testing-extras: ""