We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a36793 commit 0f4e3e0Copy full SHA for 0f4e3e0
.github/workflows/verify_published.yml
@@ -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