We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf61e2d commit e972790Copy full SHA for e972790
1 file changed
.github/workflows/daily-import-test.yml
@@ -0,0 +1,25 @@
1
+name: Daily Import Test
2
+
3
+on:
4
+ schedule:
5
+ - cron: '0 0 * * *' # Run daily at midnight UTC
6
+ workflow_dispatch: # Allow manual triggering
7
8
+jobs:
9
+ import-test:
10
+ runs-on: macos-latest
11
12
+ steps:
13
+ - name: Set up Python 3.13
14
+ uses: actions/setup-python@v5
15
+ with:
16
+ python-version: '3.13'
17
18
+ - name: Install contextgem from PyPI
19
+ run: |
20
+ python -m pip install --upgrade pip
21
+ pip install contextgem
22
23
+ - name: Test import
24
25
+ python -c "import contextgem; print(f'Successfully imported contextgem version {contextgem.__version__}')"
0 commit comments