Skip to content

Update checkcel.py

Update checkcel.py #40

name: Lint and tests
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install flake8
run: pip install flake8
- name: Flake8
run: flake8 checkcel --ignore=E501,W504
pytest:
runs-on: ubuntu-latest
needs: lint
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install pytest
run: pip install pytest
- name: Install checkcel
run: pip install .
- name: Test
run: pytest -v tests/
pypi:
runs-on: ubuntu-latest
needs: lint
name: Deploy release to Pypi
if: github.event_name == 'push'
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Python install
run: pip install -U pip setuptools nose build
- name: Build a binary wheel and a source tarball
run: python -m build --sdist --wheel --outdir dist/ .
- name: Publish distribution 📦 to PyPI
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_KEY }}