Skip to content

Commit

Permalink
Merge pull request #2 from KevKibe/main
Browse files Browse the repository at this point in the history
update: ruff check workflow, pypi distribution CI configuration
  • Loading branch information
KevKibe authored Apr 6, 2024
2 parents d6166d4 + 0eab90f commit e8269a4
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 0 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/distribute-package.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Build and Publish Python distribution to PyPI

on:
release:
types: [published]

jobs:
build:
name: Build distribution 📦
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install pypa/build
run: >-
python3 -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: python3 -m build
- name: Store the distribution packages
uses: actions/upload-artifact@v4
with:
name: docindex-package-distribution
path: dist

publish-to-pypi:
name: Publish Python distribution to PyPI
needs: build
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/docindex

steps:
- name: Download all the dists
uses: actions/download-artifact@v4
with:
name: docindex-package-distribution
path: docindex-package-distribution

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

- name: Publish distribution 📦 to PyPI
run: |
python3 -m pip install twine
python3 -m twine upload --repository pypi --username keviinkibe --password ${{ secrets.PYPI_API_TOKEN }} docindex-package-distribution/*
18 changes: 18 additions & 0 deletions .github/workflows/ruff.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Ruff formatting

on: [pull_request]

jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: pip install ruff
- run: |
ruff check src/ .
ruff check --fix src/
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: 'Style fixes by Ruff'

0 comments on commit e8269a4

Please sign in to comment.