Skip to content

Commit

Permalink
PyPI release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dsp-ant committed Nov 12, 2024
1 parent df33a9b commit 753c76e
Show file tree
Hide file tree
Showing 7 changed files with 141 additions and 87 deletions.
29 changes: 0 additions & 29 deletions .github/workflows/check-format.yml

This file was deleted.

29 changes: 0 additions & 29 deletions .github/workflows/check-types.yml

This file was deleted.

9 changes: 9 additions & 0 deletions .github/workflows/main-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Main branch checks

on:
push:
branches: [main]

jobs:
checks:
uses: ./.github/workflows/shared.yml
29 changes: 0 additions & 29 deletions .github/workflows/main.yml

This file was deleted.

55 changes: 55 additions & 0 deletions .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Publishing

on:
release:
types: [published]

jobs:
release-build:
name: Build distribution
runs-on: ubuntu-latest
needs: [checks]
steps:
- uses: actions/checkout@v4

- name: Install uv
uses: astral-sh/setup-uv@v3

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

- name: Install the project
run: uv sync --frozen --all-extras --dev

- name: Build
run: uv build

- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: release-dists
path: dist/

checks:
uses: ./.github/workflows/shared.yml

pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
environment: release
needs:
- release-build
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing

steps:
- name: Retrieve release distributions
uses: actions/download-artifact@v4
with:
name: release-dists
path: dist/

- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
8 changes: 8 additions & 0 deletions .github/workflows/pull-request-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: Pull request checks

on:
pull_request:

jobs:
checks:
uses: ./.github/workflows/shared.yml
69 changes: 69 additions & 0 deletions .github/workflows/shared.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: Shared Checks

on:
workflow_call:

jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true

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

- name: Install the project
run: uv sync --frozen --all-extras --dev

- name: Run ruff format check
run: uv run --frozen ruff check .

typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true

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

- name: Install the project
run: uv sync --frozen --all-extras --dev

- name: Run pyright
run: uv run --frozen pyright

build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true

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

- name: Install the project
run: uv sync --frozen --all-extras --dev

- name: Run pytest
run: uv run --frozen pytest

0 comments on commit 753c76e

Please sign in to comment.