Skip to content

Commit

Permalink
Merge pull request #16 from UCL/15-github-actions
Browse files Browse the repository at this point in the history
15 GitHub actions
  • Loading branch information
tdowrick authored May 13, 2020
2 parents 29a94f9 + 483d3f0 commit 2dd78f8
Showing 4 changed files with 60 additions and 187 deletions.
59 changes: 59 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
on: push

jobs:
test:
strategy:
matrix:
os: [ubuntu-18.04, macos-latest, windows-latest]
python-ver: [3.6, 3.7, 3.8]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-ver }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run tests
run: |
coverage erase
coverage run -a --source ./sksurgerycalibration -m pytest -v -s ./tests/
coverage report -m
pylint --rcfile=tests/pylintrc sksurgerycalibration tests
- name: Run coveralls
run: |
coveralls
deploy:
runs-on: ubuntu-18.04
needs: test
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@master
- name: Set up Python
uses: actions/setup-python@v1
with:
# TODO: python version for deploy?
python-version: 3.6

- name: Install dependencies
run: python -m pip install wheel twine setuptools

- name: Build wheel
run: |
python setup.py sdist
- name: Publish package if tagged release
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
146 changes: 0 additions & 146 deletions .gitlab-ci.yml

This file was deleted.

41 changes: 0 additions & 41 deletions .travis.yml

This file was deleted.

1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -15,3 +15,4 @@ sphinx_rtd_theme
pyinstaller
pytest
tox
pyyaml

0 comments on commit 2dd78f8

Please sign in to comment.