Skip to content

Commit

Permalink
Merge branch 'master' of github.com:hannanabdul55/seldonian-fairness
Browse files Browse the repository at this point in the history
  • Loading branch information
hannanabdul55 committed Nov 19, 2020
2 parents ea04641 + 6d6402a commit 18c039f
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/blank.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Deploy documentation

on:
workflow_dispatch:
Expand All @@ -17,6 +17,16 @@ jobs:
python-version: '3.8' # Version range or exact version of a Python version to use, using SemVer's version range syntax
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
- uses: actions/checkout@v1
- name: Cache pip
uses: actions/cache@v2
with:
# This path is specific to Ubuntu
path: ~/.cache/pip
# Look to see if there is a cache hit for the corresponding requirements file
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-
- run: pip3 install -r requirements.txt
# Standard drop-in approach that should work for most people.
- run: cd docs && make html
Expand Down

0 comments on commit 18c039f

Please sign in to comment.