Skip to content

Commit

Permalink
Merge e0b76d1 into 5828072
Browse files Browse the repository at this point in the history
  • Loading branch information
amoodie committed Jun 20, 2020
2 parents 5828072 + e0b76d1 commit 1c9ce38
Show file tree
Hide file tree
Showing 4 changed files with 122 additions and 2 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# This workflow installs and tests pyDeltaRCM on mulitple python versions and operating systems.

name: actions

on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]

jobs:
build:

runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8]

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov coveralls
pip install -r requirements.txt
- name: Install pyDeltaRCM
run: |
python setup.py install
- name: Test with pytest
run: |
pytest --cov=pyDeltaRCM/
- name: Report code coverage
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: |
coveralls
32 changes: 32 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# This workflows will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries

name: deploy

on:
release:
types: [created]

jobs:
deploy:

# package runs on all os, so just upload from one for any
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
46 changes: 46 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# This workflow build and deploys the docs
# build docs on any pull request against develop, but only deploy docs on push to develop.

name: actions

on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]

jobs:
docs:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-docs.txt
sudo apt update -y && sudo apt install -y latexmk texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended dvipng
- name: Install pyDeltaRCM
run: |
python setup.py install
- name: Build and test documentation
run: |
(cd docs && make docs)
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@3.5.5
if: ${{ github.event_name == 'push' && github.ref == 'develop' }}
with:
ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: docs/build/html
GIT_CONFIG_NAME: deltarcm-helper


4 changes: 2 additions & 2 deletions docs/source/guides/devguide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Developer Guide
***************

.. image:: https://api.travis-ci.com/DeltaRCM/pyDeltaRCM_WMT.svg?branch=develop
:target: https://travis-ci.com/DeltaRCM/pyDeltaRCM_WMT
.. image:: https://github.com/DeltaRCM/pyDeltaRCM_WMT/workflows/actions/badge.svg
:target: https://github.com/DeltaRCM/pyDeltaRCM_WMT/actions

Guide to developers!

0 comments on commit 1c9ce38

Please sign in to comment.