Skip to content

Commit 0f4e3e0

Browse files
committed
added new GA workflow to verify the pypi webknossos package
1 parent 5a36793 commit 0f4e3e0

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Verify Published Package
2+
3+
# Verifies that the published webknossos package on PyPi.org can be installed and imported
4+
# across different Python versions. Tests both basic installation and "all" optional
5+
# dependencies. Runs nightly to ensure consistent package availability.
6+
7+
on:
8+
schedule:
9+
- cron: '0 0 * * *' # Run every night at midnight
10+
workflow_dispatch: # Allow manual trigger
11+
12+
jobs:
13+
verify-published:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- name: Set up Python
18+
uses: actions/setup-python@v4
19+
20+
21+

0 commit comments

Comments
 (0)