install from tests/requirements.txt #2
This file contains 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 Tests for Shiny Assistant | |
on: | |
schedule: | |
- cron: "0 3 * * *" | |
push: | |
branches: | |
- "testing**" | |
workflow_dispatch: | |
jobs: | |
process-issues: | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r tests/requirements.txt | |
playwright install chromium --with-deps | |
- name: Process issue description | |
id: process-description | |
run: python tests/run_smoke_test.py |