Skip to content

Commit ca2860b

Browse files
Merge pull request #310 from chinapandaman/PPF-309
PPF-309: add badges to README
2 parents 8acb7ef + a781f0d commit ca2860b

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/python-black-isort.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# https://github.com/cclauss/autoblack
22

3-
name: Python black/isort
3+
name: Code Formatting
44

55
on:
66
push:

.github/workflows/python-package.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
22
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
33

4-
name: Python package
4+
name: Tests
55

66
on:
77
push:

.github/workflows/python-publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This workflows will upload a Python Package using Twine when a release is created
22
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
33

4-
name: Upload Python Package
4+
name: Deploy
55

66
on:
77
release:
@@ -22,7 +22,7 @@ jobs:
2222
run: |
2323
python -m pip install --upgrade pip
2424
pip install setuptools wheel twine
25-
- name: Build and publish to PyPI
25+
- name: Build and deploy to PyPI
2626
env:
2727
TWINE_USERNAME: __token__
2828
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}

PyPDFForm/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
PyPDFForm = Wrapper
88
PyPDFForm2 = WrapperV2
99

10-
__version__ = "1.1.6"
10+
__version__ = "1.1.7"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PyPDFForm
1+
# PyPDFForm ![code formatting](https://github.com/chinapandaman/PyPDFForm/actions/workflows/python-black-isort.yml/badge.svg) ![tests](https://github.com/chinapandaman/PyPDFForm/actions/workflows/python-package.yml/badge.svg) [![codecov](https://codecov.io/gh/chinapandaman/PyPDFForm/branch/master/graph/badge.svg?token=CSRLN14IFE)](https://codecov.io/gh/chinapandaman/PyPDFForm) ![deploy](https://github.com/chinapandaman/PyPDFForm/actions/workflows/python-publish.yml/badge.svg)
22

33
PyPDFForm is a pure Python library for PDF form processing.
44
It allows filling a PDF form programmatically by creating

0 commit comments

Comments
 (0)