Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
timeout-minutes: 2
steps:
- uses: actions/checkout@v6.0.2
with:
persist-credentials: false
- uses: astral-sh/setup-uv@v8.0.0
- name: ruff check
run: uv run ruff check --output-format=github
Expand All @@ -31,6 +33,8 @@ jobs:
timeout-minutes: 2
steps:
- uses: actions/checkout@v6.0.2
with:
persist-credentials: false
- name: dprint
uses: dprint/check@v2.3

Expand All @@ -39,6 +43,8 @@ jobs:
timeout-minutes: 2
steps:
- uses: actions/checkout@v6.0.2
with:
persist-credentials: false
- uses: astral-sh/setup-uv@v8.0.0
with:
python-version: "3.12"
Expand All @@ -54,6 +60,8 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v6.0.2
with:
persist-credentials: false
- uses: astral-sh/setup-uv@v8.0.0
with:
python-version: "3.12"
Expand All @@ -67,6 +75,8 @@ jobs:
timeout-minutes: 5
steps:
- uses: actions/checkout@v6.0.2
with:
persist-credentials: false
- uses: astral-sh/setup-uv@v8.0.0
with:
python-version: "3.12"
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/collect.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,15 @@ jobs:
steps:
- name: checkout main
uses: actions/checkout@v6.0.2
with:
persist-credentials: false

- name: checkout data
uses: actions/checkout@v6.0.2
with:
ref: data
path: _data
persist-credentials: false
Comment thread
jorenham marked this conversation as resolved.

- uses: astral-sh/setup-uv@v8.0.0
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,15 @@ jobs:
steps:
- name: checkout main
uses: actions/checkout@v6.0.2
with:
persist-credentials: false

- name: checkout data
uses: actions/checkout@v6.0.2
with:
ref: data
path: _data
persist-credentials: false

- uses: actions/configure-pages@v6

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,12 @@ jobs:
id-token: write
steps:
- uses: actions/checkout@v6.0.2
with:
persist-credentials: false

- uses: astral-sh/setup-uv@v8.0.0
with:
enable-cache: false

- name: uv build
run: uv build
Expand Down
Loading