Skip to content

Bump version number to 0.3.0. #14

Bump version number to 0.3.0.

Bump version number to 0.3.0. #14

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
paths-ignore:
- "*.md"
jobs:
pypi:
name: PYPI check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and check
run: |
python setup.py sdist bdist_wheel
twine check dist/*