Skip to content

Commit

Permalink
packaging testing
Browse files Browse the repository at this point in the history
  • Loading branch information
andped10 committed Jan 12, 2024
1 parent cded290 commit 6bfc6f1
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# This workflows will will for a variety of Python versions
# This workflow will will for a variety of Python versions
# - install the code base
# - lint the code base
# - test the code base
# - upload the test coverage to codecov
#
# - it will also build the package
# It will also
# - build the package
# - check the package
#
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
Expand Down Expand Up @@ -56,7 +57,7 @@ jobs:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}

Packaging_Testing:
Package_Testing:

runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]')"
Expand All @@ -68,14 +69,10 @@ jobs:
with:
python-version: 3.9

- name: install pypa/build
run: python -m pip install build --user

- name: install pytest
run: python -m pip install pytest --user

- name: build a binary wheel and source tarball
run: python -m build
- name: Install dependencies and build
run: |
pip install -e '.[dev]'
python -m build
- name: Check Build
run: |
Expand Down

0 comments on commit 6bfc6f1

Please sign in to comment.