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

Update .readthedocs.yml #133

Update .readthedocs.yml

Update .readthedocs.yml #133

Workflow file for this run

---
name: ci
on:
pull_request:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version:
- '3.8'
steps:
- uses: actions/checkout@v2
- name: setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- run: pip install -r requirements/ci.txt
- run: make test-all