Merge branch 'develop' into main #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Python Package | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Check initial disk usage | |
run: df -h | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e . --no-cache-dir | |
if [ -f requirements.txt ]; then pip install -r requirements.txt --no-cache-dir; fi | |
pip install hypothesis faker flake8 pytest --no-cache-dir | |
- name: Clean up pip cache | |
run: pip cache purge | |
- name: Check disk usage after install | |
run: df -h | |
- name: Download NLTK stopwords | |
run: | | |
python -m nltk.downloader stopwords | |
- name: Test with pytest | |
run: | | |
pytest | |
publish: | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.10' # Use stable version for publishing | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install setuptools wheel twine | |
- name: Build the package | |
run: python setup.py sdist bdist_wheel | |
- name: Publish to PyPI | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.SQUEAKYCLEANTEXT_API }} | |
run: twine upload dist/* |