Session ID and constructor #382
Workflow file for this run
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
# https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Build | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
name: Test | |
strategy: | |
# Keep running so we can see if other tests pass | |
fail-fast: false | |
matrix: | |
python-version: | |
- '3.8' | |
- '3.9' | |
- '3.10' | |
- '3.11' | |
- '3.12' | |
os: | |
- ubuntu-22.04 | |
include: | |
- python-version: '3.8' | |
os: macos-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Get tox target | |
id: toxtarget | |
run: | | |
py=$(echo ${{ matrix.python-version }} | tr -d .) | |
echo "py=$py" >> $GITHUB_OUTPUT | |
shell: bash | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: python -mpip install --upgrade wheel pytest tox virtualenv | |
- name: Run tests | |
run: tox -e py${{ steps.toxtarget.outputs.py }} | |
# https://packaging.python.org/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/ | |
publish-pypi: | |
name: Pypi | |
if: startsWith(github.ref, 'refs/tags') | |
needs: | |
# Only publish if other jobs passed | |
- test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Build package | |
run: | | |
python -mpip install wheel | |
python setup.py sdist bdist_wheel | |
- name: Publish to PyPI | |
uses: pypa/gh-action-pypi-publish@v1.3.0 | |
with: | |
password: ${{ secrets.PYPI_PASSWORD }} |