Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
34 lines (34 loc) · 866 Bytes

File metadata and controls

34 lines (34 loc) · 866 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Documentation
on:
push:
branches:
- master
jobs:
build-n-deploy:
name: Build and deploy
runs-on: ubuntu-22.04
steps:
- name: Checkout code 🛎️
uses: actions/checkout@v2.3.1
with:
persist-credentials: false
- name: Set up Python 3.8 🐍
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies 💾
run: |
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Build the documentation 🔧📖
run: |
cd docs
make html
- name: Deploy 🚀
if: github.ref == 'refs/heads/master'
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: docs/build/html
CLEAN: true
Morty Proxy This is a proxified and sanitized view of the page, visit original site.