We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 27f3aee + 2e3f05d commit 441fac1Copy full SHA for 441fac1
2 files changed
.github/workflows/docs.yml
@@ -0,0 +1,32 @@
1
+name: Publish docs
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+permissions:
9
+ contents: write
10
11
+jobs:
12
+ build-and-publish-docs:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout code
16
+ uses: actions/checkout@v4
17
18
+ - name: Set up Python
19
+ uses: actions/setup-python@v5
20
+ with:
21
+ python-version-file: pyproject.toml
22
23
+ - name: Set up uv
24
+ uses: astral-sh/setup-uv@v5
25
26
+ version: 0.6.11
27
28
+ - name: Install project
29
+ run: uv sync --group docs
30
31
+ - name: Deploy to GitHub Pages
32
+ run: uv run mkdocs gh-deploy
.github/workflows/ci.yml .github/workflows/test.yml.github/workflows/ci.yml renamed to .github/workflows/test.yml
@@ -1,9 +1,9 @@
-name: tests
+name: Run tests
on: [pull_request, workflow_dispatch]
jobs:
- build-test:
+ test:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
0 commit comments