Skip to content

Merge pull request #38 from alephdata/dependabot/pip/pytest-8.1.1 #124

Merge pull request #38 from alephdata/dependabot/pip/pytest-8.1.1

Merge pull request #38 from alephdata/dependabot/pip/pytest-8.1.1 #124

Workflow file for this run

name: build
on: [push]
jobs:
python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Show ref
run: |
echo "$GITHUB_REF"
- name: Run the tests
run: make build db test
- name: Build a distribution
run: |
python setup.py sdist bdist_wheel
- name: Publish a Python distribution to PyPI
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.pypi_password }}