Skip to content

Commit

Permalink
Move coveralls to github action
Browse files Browse the repository at this point in the history
  • Loading branch information
chdemko committed Jun 17, 2023
1 parent dbfb7e4 commit 59298fe
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 27 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: Python package

on:
push:
branches: [ develop, main ]
branches: [ develop ]
pull_request:
branches: [ develop, main ]
branches: [ develop ]

jobs:
test:
Expand Down Expand Up @@ -63,5 +63,6 @@ jobs:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: |
poetry run tox -e coverage
poetry run pip install coveralls
poetry run coveralls
52 changes: 28 additions & 24 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
@@ -1,31 +1,35 @@
# This workflows will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries

#name: Upload Python Package
name: Upload Python Package

#on:
# release:
# types: [created]
on:
release:
types: [created]

#jobs:
# deploy:
jobs:
deploy:

# runs-on: ubuntu-latest
runs-on: ubuntu-latest

# steps:
# - uses: actions/checkout@v2
# - name: Set up Python
# uses: actions/setup-python@v2
# with:
# python-version: '3.x'
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip
# pip install setuptools wheel twine
# - name: Build and publish
# env:
# TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
# TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
# run: |
# python setup.py sdist bdist_wheel
# twine upload dist/*
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Set up Poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: '1.5'
- name: Install dependencies
run: |
poetry install
poetry run pip install twine
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
poetry build
poetry run twine upload dist/*
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@
# Tests
pytest = "^7.3.2"
pytest-cov = "^4.0.0"
coveralls = "^3.3.1"

# Style checkers
doc8 = "^0.11.2"
Expand Down

0 comments on commit 59298fe

Please sign in to comment.