We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9d06a2 commit 41afdedCopy full SHA for 41afded
.github/workflows/publish.yml
@@ -0,0 +1,18 @@
1
+name: Publish to PyPI
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - "v*"
7
8
+jobs:
9
+ publish:
10
+ runs-on: ubuntu-latest
11
+ environment: release
12
+ permissions:
13
+ id-token: write
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - uses: astral-sh/setup-uv@v4
17
+ - run: uv build
18
+ - uses: pypa/gh-action-pypi-publish@release/v1
.github/workflows/test.yml
@@ -0,0 +1,16 @@
+name: test
+ branches: [main]
+ pull_request:
+ test:
+ - run: uv sync --extra dev
+ - run: uv run pytest
0 commit comments