Skip to content

Commit

Permalink
removes cd from python application
Browse files Browse the repository at this point in the history
  • Loading branch information
adamingas committed Jan 20, 2024
1 parent 5b49b72 commit 59065f5
Showing 1 changed file with 1 addition and 34 deletions.
35 changes: 1 addition & 34 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,37 +37,4 @@ jobs:
- uses: chartboost/ruff-action@v1
- name: Test with pytest
run: |
pytest
cd:
needs: ci
# Only run this job if new work is pushed to "main"
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
# Set up operating system
runs-on: ubuntu-latest
permissions:
id-token: write
environment:
name: pypi
url: https://pypi.org/p/ordinalgbt
# Define job steps
steps:
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- uses: actions/checkout@v3
# Here we run build to create a wheel and a
# .tar.gz source distribution.
- name: Build package
run: python -m build --sdist --wheel
# Finally, we use a pre-defined action to publish
# our package in place of twine.
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
- name: Test install from PyPi
run: |
pip install ordinalgbt
pytest

0 comments on commit 59065f5

Please sign in to comment.