add publish+ruff workflows

This commit is contained in:
onyx-and-iris 2026-02-27 21:29:01 +00:00
parent 845d93bda4
commit 35cffbcf91
2 changed files with 47 additions and 0 deletions

28
.github/workflows/publish.yml vendored Normal file
View File

@ -0,0 +1,28 @@
name: 'Publish'
on:
release:
types: [published]
push:
tags:
- 'v*.*.*'
jobs:
run:
runs-on: ubuntu-latest
environment:
name: pypi
permissions:
id-token: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install Python 3.13
run: uv python install 3.13
- name: Build
run: uv build
- name: Publish
run: uv publish

19
.github/workflows/ruff.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: Ruff
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: astral-sh/ruff-action@v3
with:
args: 'format --check --diff'