Skip to content

Commit

Permalink
Merge pull request #7 from jurra/feature/ci-testing-setup
Browse files Browse the repository at this point in the history
Feature/ci testing setup
  • Loading branch information
jurra authored Sep 18, 2023
2 parents 825c0e8 + f25c449 commit aae6407
Show file tree
Hide file tree
Showing 4 changed files with 123 additions and 89 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/pip.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# This provided workflow file is focused on testing a Python project using pip, the package installer for Python.
# There's also a specialized job for building and testing the package in a Mingw64 environment on Windows.
name: Pip

on:
Expand Down
35 changes: 35 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

# GitHub recommends pinning actions to a commit SHA.
# To get a newer version, you will need to update the SHA.
# You can also reference a tag or branch, but the action may change without warning.

name: Upload Python Package

on:
release:
types: [published]

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.pypi_password }}
89 changes: 0 additions & 89 deletions .github/workflows/python-tests.yml

This file was deleted.

86 changes: 86 additions & 0 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
# This workflow, labeled "Wheels", is focused on building and distributing Python packages.
# Specifically, it builds source distributions (sdist) and binary wheel distributions,
# and uploads them to the Python Package Index (PyPI) when a new release is published on GitHub.
name: Wheels

on:
workflow_dispatch:
pull_request:
push:
branches: [ '*' ]
# release:
# types:
# - published

# concurrency:
# group: ${{ github.workflow }}-${{ github.ref }}
# cancel-in-progress: true

jobs:
build_sdist:
name: Build SDist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Build SDist0
run: pipx run build --sdist

- name: Check metadata
run: pipx run twine check dist/*

- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz


build_wheels:
name: Wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
- uses: actions/checkout@v3

- uses: pypa/[email protected]
env:
CIBW_ARCHS_MACOS: auto universal2
CIBW_PRERELEASE_PYTHONS: true

- name: Verify clean directory
run: git diff --exit-code
shell: bash

- name: Upload wheels
uses: actions/upload-artifact@v3
with:
path: wheelhouse/*.whl


upload_all:
name: Upload if release
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
# if: github.event_name == 'release' && github.event.action == 'published'

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

- uses: actions/download-artifact@v3
name: Download wheels
with:
name: artifact
path: dist

- uses: pypa/gh-action-pypi-publish@release/v1
name: Publish to PyPI
with:
user: __token__
password: ${{ secrets.test_pypi_password }}
repository-url: https://test.pypi.org/legacy/

0 comments on commit aae6407

Please sign in to comment.