Nightly Desktop Smoke #55
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: Nightly Desktop Smoke | |
| on: | |
| schedule: | |
| - cron: "0 18 * * *" | |
| workflow_dispatch: | |
| jobs: | |
| desktop-smoke: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| cache: pip | |
| - name: Install Python dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements.txt | |
| - name: Run desktop smoke script | |
| run: bash scripts/verify_desktop.sh |