-
Notifications
You must be signed in to change notification settings - Fork 7
31 lines (29 loc) · 1.08 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
name: PCDS Standard Testing
on:
push:
pull_request:
release:
types:
- created
jobs:
standard:
uses: pcdshub/pcds-ci-helpers/.github/workflows/python-standard.yml@master
secrets: inherit
with:
# The workflow needs to know the package name. This can be determined
# automatically if the repository name is the same as the import name.
package-name: "whatrecord"
# Extras that will be installed for both conda/pip:
testing-extras: ""
# Extras to be installed only for conda-based testing:
conda-testing-extras: ""
# Extras to be installed only for pip-based testing:
pip-testing-extras: ""
# System packages to be installed only for conda-based testing:
conda-system-packages: ""
# System packages to be installed only for pip-based testing:
pip-system-packages: "libldap2-dev libsasl2-dev gdb graphviz"
# System packages to be installed only for documentation:
docs-system-packages: ""
# Set if using setuptools-scm for the conda-build workflow
use-setuptools-scm: true