Skip to content

Commit

Permalink
Merge pull request #170 from gregoil/upload_docs_artifact
Browse files Browse the repository at this point in the history
Add upload artifact job
  • Loading branch information
gregoil committed Nov 3, 2019
2 parents 8613872 + dccc4df commit 22f7139
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,18 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Prepare environment
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
uses: actions/setup-python@v1
- name: Build docs
run: |
pip install tox
tox -e docs
cd docs/_build
tar -cf docs.tar html
- name: Upload docs artifact
uses: actions/upload-artifact@master
with:
name: docs
path: docs/_build/docs.tar
- name: Build
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
run: |
Expand Down
2 changes: 1 addition & 1 deletion src/rotest/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# pylint: disable=too-many-locals
# pylint: disable=too-many-locals,redefined-outer-name
from django.apps import AppConfig


Expand Down

0 comments on commit 22f7139

Please sign in to comment.