Skip to content

validate-hostname: add tests for spaces (#8) and host ending with . (… #9

validate-hostname: add tests for spaces (#8) and host ending with . (…

validate-hostname: add tests for spaces (#8) and host ending with . (… #9

name: Pypi deploy
on:
push:
branches:
- master
tags:
- 'v*'
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-ver }}
uses: actions/setup-python@v1
with:
python-version: '3.6'
- uses: actions/cache@v1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
pip install -U pip setuptools cython wheel
pip install -Ur requirements.txt
- name: Build dist images
run: python setup.py sdist bdist_wheel
- name: Publish package
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@v1.1.0
with:
user: __token__
password: ${{ secrets.pypi_token }}