Skip to content
This repository was archived by the owner on May 31, 2021. It is now read-only.

Use GitHub actions #39

Merged
merged 3 commits into from
May 7, 2021
Merged
Show file tree
Hide file tree
Changes from all 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
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Tests

on:
pull_request:
push:
branches: master

jobs:
test:
name: test
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/cache@v1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install Dependencies
run: python3 -m pip install -U pip -r requirements.txt
- name: Build Docs
run: sphinx-build -n -W -q -b html -d _build/doctrees . _build/html
8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.