Daily Import Test #183
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Daily Import Test | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' # Run daily at midnight UTC | |
| workflow_dispatch: # Allow manual triggering | |
| jobs: | |
| import-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Python 3.13 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.13' | |
| - name: Install contextgem from PyPI | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install contextgem | |
| - name: Test import | |
| run: | | |
| python -c "import contextgem; print(f'Successfully imported contextgem version {contextgem.__version__}')" |