Skip to content
This repository has been archived by the owner on Aug 9, 2024. It is now read-only.

Add dbus reboot stress #185

Add dbus reboot stress

Add dbus reboot stress #185

Workflow file for this run

name: Test checkbox-provider-ce-oem with tox
on:
push:
pull_request:
branches: [ main ]
paths:
- checkbox-provider-ce-oem/**
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python: ["3.5", "3.6", "3.8", "3.10"]
steps:
- uses: actions/checkout@v3
- name: install stable checkbox and checkbox-provider-ce-oem
run: |
cd ~
git clone --depth=1 https://github.com/canonical/checkbox.git
cd -
cp -r checkbox-provider-ce-oem ~/checkbox/providers
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install tox and otehr dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install tox
- name: Run tox
working-directory: /home/runner/checkbox/providers/checkbox-provider-ce-oem/
run: tox -e py${{ matrix.python }}