Skip to content

Update Chrome OS check #481

Update Chrome OS check

Update Chrome OS check #481

Workflow file for this run

# This workflow checks Chrome OS recovery images availability status
name: Status
on:
pull_request:
branches:
- master
schedule:
- cron: 0 5 * * 3
jobs:
tests:
name: Checks
runs-on: ubuntu-latest
env:
PYTHONIOENCODING: utf-8
PYTHONPATH: '${{ github.workspace }}/resources/lib:${{ github.workspace }}/tests'
strategy:
fail-fast: false
steps:
- name: 'Check out ${{ github.sha }} from repository ${{ github.repository }}'
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Check Chrome OS recovery images availability
run: python -m tests.checkchromeos
if: always()