Skip to content

Commit e355118

Browse files
authored
Merge pull request #747 from sunpy/ci_patch
Update dep for source wheel build
2 parents 9d46a92 + eeef900 commit e355118

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,16 @@ jobs:
9999
if: |
100100
github.event_name != 'pull_request' && (
101101
github.ref_name != 'main' ||
102-
github.event_name == 'workflow_dispatch' )
102+
github.event_name == 'workflow_dispatch'
103+
) || (
104+
github.event_name == 'pull_request' &&
105+
contains(github.event.pull_request.labels.*.name, 'Run publish')
106+
)
103107
needs: [test, docs]
104108
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@v1
105109
with:
106110
python-version: '3.10'
107-
test_extras: 'tests'
111+
test_extras: 'dev'
108112
test_command: 'pytest -p no:warnings --doctest-rst --pyargs ndcube'
109113
submodules: false
110114
secrets:

0 commit comments

Comments
 (0)