Automated Quality Control (against real devices) #13783
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: Automated Quality Control (against real devices) | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 * * * *' # every hour | |
jobs: | |
automated-qc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Run automated QC script | |
env: | |
SCREENLY_API_TOKEN: ${{ secrets.SCREENLY_API_TOKEN }} | |
run: | | |
python -u automated_quality_control.py |