Skip to content

Use Sphinx GithubAction instead of Travis #13061

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
on:
push:
branches-ignore:
- 'github-comments'
pull_request:
branches-ignore:
- 'github-comments'

name: CI

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.x
uses: actions/setup-python@v1
with:
python-version: '3.7' # Semantic version range syntax or exact version of a Python version
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- run: sudo apt-get install python-dev build-essential
- run: pip install --user sphinx
- run: pip install -r _build/.requirements.txt
- run: make -C _build SPHINXOPTS=-nW html
doctor-rst:
name: DOCtor-RST
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: DOCtor-RST
uses: docker://oskarstark/doctor-rst
with:
args: --short
12 changes: 0 additions & 12 deletions .github/workflows/lint.yaml

This file was deleted.

15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.