Skip to content

Feature/python3.11 (#149) #2

Feature/python3.11 (#149)

Feature/python3.11 (#149) #2

name: Test PyPI Release
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install wheel twine
pip install -r requirements.txt
- name: Build distribution package
run: |
python setup.py sdist bdist_wheel
- name: Upload to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_API_TOKEN }}
run: |
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
- name: Install package from TestPyPI
run: |
python -m pip install --index-url https://test.pypi.org/simple/ --no-deps shelvery