Skip to content

Automated Quality Control (against real devices) #19115

Automated Quality Control (against real devices)

Automated Quality Control (against real devices) #19115

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
workflow-keepalive:
if: github.event_name == 'schedule'
runs-on: ubuntu-latest
permissions:
actions: write
steps:
- uses: liskin/gh-workflow-keepalive@f72ff1a1336129f29bf0166c0fd0ca6cf1bcb38c #v1