Skip to content

Commit

Permalink
Merge pull request #13 from chmoder/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
chmoder authored Nov 4, 2022
2 parents 4a00573 + 13903e9 commit 85e8629
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,21 @@ jobs:
run: |
pip install coverage
coverage combine && coverage report --fail-under=${{env.COVERAGE_LIMIT}} -m
coverage html
coverage html
coverage xml
- name: Archive code coverage html report
uses: actions/upload-artifact@v3
with:
name: code-coverage-report
path: htmlcov/index.html
path: htmlcov/index.html
- name: Archive code coverage xml report
uses: actions/upload-artifact@v3
with:
name: code-coverage-report
path: coverage.xml
- name: Uload Coverage Report to codecov
uses: codecov/codecov-action@v3
with:
name: strike-api
files: coverage.xml
fail_ci_if_error: true
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ A python client for the https://strike.me API.

[![PyPI version](https://badge.fury.io/py/strike-api.svg)](https://badge.fury.io/py/strike-api)
[![Documentation Status](https://readthedocs.org/projects/strike-api/badge/?version=latest)](https://strike-api.readthedocs.io/en/latest/?badge=latest)
[![codecov](https://codecov.io/github/chmoder/strike-api/branch/main/graph/badge.svg?token=JR81BI9IGR)](https://codecov.io/github/chmoder/strike-api)


## Example Usage
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "strike-api"
version = "0.1.5"
version = "0.1.6"
description = "A python client for the strike api"
authors = ["Thomas Cross <tom.bz2@gmail.com>"]
readme = "README.md"
Expand Down

0 comments on commit 85e8629

Please sign in to comment.