We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9d46a92 + eeef900 commit e355118Copy full SHA for e355118
.github/workflows/ci.yml
@@ -99,12 +99,16 @@ jobs:
99
if: |
100
github.event_name != 'pull_request' && (
101
github.ref_name != 'main' ||
102
- github.event_name == 'workflow_dispatch' )
+ github.event_name == 'workflow_dispatch'
103
+ ) || (
104
+ github.event_name == 'pull_request' &&
105
+ contains(github.event.pull_request.labels.*.name, 'Run publish')
106
+ )
107
needs: [test, docs]
108
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@v1
109
with:
110
python-version: '3.10'
- test_extras: 'tests'
111
+ test_extras: 'dev'
112
test_command: 'pytest -p no:warnings --doctest-rst --pyargs ndcube'
113
submodules: false
114
secrets:
0 commit comments