Skip to content

Commit

Permalink
Add GitHub workflows to automate PyPI releases
Browse files Browse the repository at this point in the history
  • Loading branch information
xnx committed Aug 1, 2022
1 parent eecd599 commit 489eed4
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/pypi-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: pypi-deploy

on:
release:
types: [published]

jobs:
deploy:
name: Build and deploy the package to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade build
pip install --upgrade twine
- name: Build package
run: |
python -m build --outdir dist/
twine check dist/*
- name: Publish package
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
verbose: true
32 changes: 32 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: tests

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build-n-test:
name: Install and test the package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: "3.9"
- name: Install the package locally
run: |
python -m pip install --upgrade pip
pip install .
- name: Install dependencies for testing
run: |
pip install pytest-cov
pip install black
- name: Test with pytest
run: |
pytest --cov
- name: Check code format
run: |
black --check .

0 comments on commit 489eed4

Please sign in to comment.