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

Commit 8ac6b81

Browse files
authored
Merge pull request #39 from matrixise/use_github_actions
Use GitHub actions
2 parents 37765c8 + eb44a3a commit 8ac6b81

File tree

2 files changed

+27
-8
lines changed

2 files changed

+27
-8
lines changed

.github/workflows/ci.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Tests
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: master
7+
8+
jobs:
9+
test:
10+
name: test
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: actions/cache@v1
16+
with:
17+
path: ~/.cache/pip
18+
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
19+
restore-keys: |
20+
${{ runner.os }}-pip-
21+
- uses: actions/setup-python@v2
22+
with:
23+
python-version: 3.9
24+
- name: Install Dependencies
25+
run: python3 -m pip install -U pip -r requirements.txt
26+
- name: Build Docs
27+
run: sphinx-build -n -W -q -b html -d _build/doctrees . _build/html

.travis.yml

-8
This file was deleted.

0 commit comments

Comments
 (0)