Configure Renovate #77
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python package | |
on: [push, pull_request] | |
jobs: | |
generate-code: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
pip install -r dev-requirements.txt | |
- name: generate code | |
run: | | |
make rebrickable/api | |
- name: scm_version | |
run: | | |
python -m setuptools_scm | |
- name: Upload generated code | |
uses: actions/upload-artifact@v1 | |
with: | |
name: code | |
path: rebrickable/api | |
test: | |
needs: generate-code | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: [3.5, 3.6, 3.7] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Download generated code | |
uses: actions/download-artifact@v1 | |
with: | |
name: code | |
path: rebrickable/api | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install -r dev-requirements.txt | |
- name: generate code | |
run: | | |
make rebrickable/api | |
- name: Test | |
run: | | |
tox | |
- name: Coveralls | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.coveralls_repo_token }} | |
run: | | |
coveralls | |
publish-docs: | |
if: github.event_name == 'push' && github.event.ref == 'refs/heads/master' | |
needs: | |
- test | |
- generate-code | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Download generated code | |
uses: actions/download-artifact@v1 | |
with: | |
name: code | |
path: rebrickable/api | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.5 | |
- name: Install dependencies | |
run: | | |
pip install -r dev-requirements.txt | |
- name: Generate docs | |
run: | | |
make -C docs html | |
- name: Deploy GH-pages | |
uses: peaceiris/[email protected] | |
env: | |
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }} | |
PUBLISH_BRANCH: gh-pages | |
PUBLISH_DIR: ./docs/_build/html | |
publish: | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') | |
needs: | |
- test | |
- generate-code | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: [3.5] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Download generated code | |
uses: actions/download-artifact@v1 | |
with: | |
name: code | |
path: rebrickable/api | |
- name: Set output | |
id: vars | |
run: echo ::set-output name=tag::$(echo ${GITHUB_REF:10}) | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install -r dev-requirements.txt | |
- name: Build package sdist | |
if: matrix.python-version == '3.5' | |
run: | | |
python setup.py sdist | |
- name: Build package wheel | |
run: | | |
python setup.py bdist_wheel | |
- name: Publish package | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.pypi_password }} | |
run: | | |
twine upload dist/* |