Skip to content

Fix version usage + remove broken GHA job. #5

Fix version usage + remove broken GHA job.

Fix version usage + remove broken GHA job. #5

Workflow file for this run

name: Tests
on:
- push
- pull_request
jobs:
pytest:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Run pytest
run: |
python -m pip install tox
python -m tox -e py
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Run sphinx
run: |
python -m pip install tox
python -m tox -e docs