Skip to content

ci: fix readthedocs build #836

ci: fix readthedocs build

ci: fix readthedocs build #836

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install Riot
run: pip install .
- run: riot -v run -s black -- --check .
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install Riot
run: pip install .
- run: riot -v run -s mypy
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install Riot
run: pip install .
- run: riot -v run docs
- uses: actions/upload-artifact@v2
with:
name: docs
path: docs/_build
flake8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install Riot
run: pip install .
- run: riot -v run -s flake8
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12-dev", pypy-3.7]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Riot
run: pip install .
- name: Run tests
run: riot -v run --python=${{ matrix.python-version }} test
- name: Coverage
run: riot -v run -s --python=${{ matrix.python-version }} codecov