Skip to content

Commit

Permalink
migrate to actions and remove docs
Browse files Browse the repository at this point in the history
  • Loading branch information
romnn committed Feb 2, 2021
1 parent 9c888e7 commit 4ccd480
Show file tree
Hide file tree
Showing 21 changed files with 22 additions and 826 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: test

on: [push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- run: pip install tox wheel
- name: Test
run: tox
- uses: codecov/codecov-action@v1
10 changes: 0 additions & 10 deletions .readthedocs.yml

This file was deleted.

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

This file was deleted.

5 changes: 0 additions & 5 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,6 @@ pytest-xdist = "*"
pytest-sugar = "*"
# Coverage
coverage = "*"
codecov = "*"
# Docs
sphinx = ">=2.0"
romnn_sphinx_press_theme = "*"
sphinxemoji = "*"
# Tools
"ruamel.yaml" = "*"
invoke = "*"
Expand Down
12 changes: 1 addition & 11 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ Cookiecutter PyPackage (romnn)
.. image:: https://travis-ci.com/romnn/cookiecutter-pypackage.svg?branch=master
:target: https://travis-ci.com/romnn/cookiecutter-pypackage
:alt: Build status
.. image:: https://readthedocs.org/projects/romnn-cookiecutter-pypackage/badge/?version=latest
:target: https://romnn-cookiecutter-pypackage.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status

Opinionated ``cookiecutter`` template for python packages, forked from `briggySmalls/cookiecutter-pypackage`_.

Expand Down Expand Up @@ -49,7 +46,7 @@ The following features have been **removed**:
The following features have been **changed**:

* ``yapf`` was replaced by ``black`` for formatting python code
* ``alabaster`` was replaced by ``press`` as the default documentation theme
* TODO: use hugo for documentation

The following features have been **added**:

Expand Down Expand Up @@ -151,10 +148,3 @@ After your project was created:
.. _Install the Travis CLI: https://github.com/travis-ci/travis.rb#installation
.. _ReadTheDocs: https://readthedocs.org/
.. _GitHub Pages: https://pages.github.com/

Documentation
-------------

If you need more guidance I encourage you to have a look at the `more extensive documentation`_.

.. _`more extensive documentation`: https://romnn-cookiecutter-pypackage.readthedocs.io/en/latest/

0 comments on commit 4ccd480

Please sign in to comment.