Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update test and deploy workflow #15

Merged
merged 1 commit into from
Feb 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
95 changes: 53 additions & 42 deletions .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
@@ -1,73 +1,84 @@
# This workflows will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
# This workflow:
# - runs tests on pull requests
# - runs tests on pushing to main
# - if it's a tag push and the tag starts with v, and if the tests pass,
# deploys to PyPI using Trusted Publishers:
# https://docs.pypi.org/trusted-publishers/
name: test-and-deploy

name: tests

on: push
on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
ubuntu-latest:
runs-on: ubuntu-latest
test:
name: ${{ matrix.platform }} py${{ matrix.python }}
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8]
platform: [ubuntu-latest, windows-latest, macos-latest]
# test spec-0 earliest and latest Python versions
# https://scientific-python.org/specs/spec-0000/
python: ["3.10", "3.12"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

# these libraries enable testing Qt on Linux
- uses: tlambert03/setup-qt-libs@v1

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools tox tox-gh-actions
python -m pip install setuptools tox tox-gh-actions
# python -m pip install .[all,testing] # use when adding test deps
python -m pip install .

- name: Test with tox
run: tox

- name: Coverage
uses: codecov/codecov-action@v1

# minimizing matrix by only testing 3.6 on mac & windows
mac-win:
name: ${{ matrix.platform }} (3.6)
runs-on: ${{ matrix.platform }}
strategy:
matrix:
platform: [macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.6
uses: actions/setup-python@v1
with:
python-version: 3.6
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools tox tox-gh-actions
- name: Test with tox
run: tox
env:
PLATFORM: ${{ matrix.platform }}
if: runner.os == 'Linux' && matrix.python == '3.11'

deploy:
needs: [ubuntu-latest, mac-win]
needs: [test]
runs-on: ubuntu-latest
if: contains(github.ref, 'tags')
permissions:
id-token: write
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: "3.x"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U setuptools setuptools_scm wheel twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TWINE_API_KEY }}
python -m pip install setuptools setuptools_scm build wheel

- name: Build
run: |
git tag
# python -m build # change to this when updating to pyproject.toml
python setup.py sdist bdist_wheel
twine upload dist/*

- name: Publish to PyPI
uses: pypa/gh-actions-pypi-publish@release/v1
Loading