Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.
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
2 changes: 1 addition & 1 deletion .config/copier/.copier-answers.python.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file is @generated by <https://github.com/liblaf/copier-python>.
# DO NOT EDIT!
# prettier-ignore
_commit: v0.1.13
_commit: v0.1.14
_src_path: gh:liblaf/copier-python
answers_file_shared: .config/copier/.copier-answers.shared.yaml
namespace: liblaf
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/bench.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ env:
FORCE_COLOR: 1

jobs:
metadata:
name: Metadata
collect:
name: Collect
runs-on: ubuntu-latest
outputs:
has-benches: ${{ steps.collect.outputs.has-benches }}
Expand Down Expand Up @@ -47,8 +47,8 @@ jobs:
bench:
name: Bench
needs:
- metadata
if: needs.metadata.outputs.has-benches == 'true'
- collect
if: needs.collect.outputs.has-benches == 'true'
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ env:
FORCE_COLOR: 1

jobs:
metadata:
name: Metadata
collect:
name: Collect
runs-on: ubuntu-latest
outputs:
has-tests: ${{ steps.collect.outputs.has-tests }}
Expand Down Expand Up @@ -49,8 +49,8 @@ jobs:
permissions:
id-token: write
needs:
- metadata
if: needs.metadata.outputs.has-tests == 'true'
- collect
if: needs.collect.outputs.has-tests == 'true'
runs-on: ubuntu-latest
env:
EAGER_IMPORT: true # ref: <https://github.com/scientific-python/lazy-loader?tab=readme-ov-file#early-failure>
Expand Down Expand Up @@ -79,5 +79,5 @@ jobs:
use_oidc: true
strategy:
matrix:
python-version: ${{ fromJson(needs.metadata.outputs.python-versions) }}
python-version: ${{ fromJson(needs.collect.outputs.python-versions) }}
fail-fast: false
Loading