Skip to content

Meaningful __repr__ for objects (#95) #13

Meaningful __repr__ for objects (#95)

Meaningful __repr__ for objects (#95) #13

Workflow file for this run

name: Release new mwdblib version
on:
push:
tags: 'v*.*.*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build package
run: |
pip3 install setuptools wheel
python3 setup.py bdist_wheel
- name: Publish to PyPi
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.pypi_password }}