Skip to content

Commit e972790

Browse files
test: daily import test
1 parent bf61e2d commit e972790

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
run: |
25+
python -c "import contextgem; print(f'Successfully imported contextgem version {contextgem.__version__}')"

0 commit comments

Comments
 (0)