teuthology/schedule: Add "descr" option #962
Workflow file for this run
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: CI | |
on: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
test: | |
name: CI on python${{ matrix.python }} via ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-20.04 | |
python: "3.10" | |
- os: ubuntu-22.04 | |
python: "3.10" | |
- os: ubuntu-22.04 | |
python: "3.11" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Add deadsnakes PPA | |
if: matrix.os == 'ubuntu-20.04' | |
run: sudo add-apt-repository --yes ppa:deadsnakes/ppa | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install tox | |
run: pip install tox | |
- name: Run flake8 | |
run: tox -e flake8 | |
- name: Run unit tests | |
run: tox -e py3 | |
- name: Run docs build | |
run: tox -e docs |