-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created workflow.yml to include both tests and publishing to pypi or …
…testpypi.
- Loading branch information
Showing
2 changed files
with
78 additions
and
33 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
name: Build, Test and Publish | ||
|
||
on: | ||
push: # Run on all pushes | ||
pull_request: # Run on all PRs | ||
|
||
jobs: | ||
test: | ||
name: Run Python Tests | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install . | ||
pip install pytest | ||
- name: Configure matplotlib backend | ||
run: | | ||
mkdir -p $HOME/.config/matplotlib | ||
echo "backend: Agg" > $HOME/.config/matplotlib/matplotlibrc | ||
- name: Run tests | ||
run: | | ||
python -c "import logomaker; logomaker.run_tests()" | ||
publish: | ||
name: Build and Publish | ||
needs: [test] | ||
runs-on: ubuntu-latest | ||
# Run publish job it's a tag push starting with v or test | ||
# Use v* tags (e.g., v1.0.0) for PyPI releases (must be on master branch) | ||
# Use test* tags (e.g., test1.0.0) for TestPyPI releases | ||
if: (startsWith(github.ref, 'refs/tags/v') || startsWith(github.ref, 'refs/tags/test')) | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.x' | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install build twine | ||
- name: Build package | ||
run: python -m build | ||
|
||
- name: Publish to PyPI | ||
if: github.ref == 'refs/heads/master' && startsWith(github.ref, 'refs/tags/v') | ||
env: | ||
TWINE_USERNAME: __token__ | ||
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} | ||
run: twine upload dist/* | ||
|
||
- name: Publish to TestPyPI | ||
if: startsWith(github.ref, 'refs/tags/test') | ||
env: | ||
TWINE_USERNAME: __token__ | ||
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_API_TOKEN }} | ||
TWINE_REPOSITORY_URL: https://test.pypi.org/legacy/ | ||
run: twine upload dist/* | ||
|
||
|