Skip to content
This repository was archived by the owner on May 13, 2026. It is now read-only.
Open
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 .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- test
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Build packages
run: pipx run build
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ jobs:
java-version: ["21"]

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Set up java ${{ matrix.java-version }}
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: "temurin"
java-version: ${{ matrix.java-version }}
java-package: "jre"

- name: Set up uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7

- name: Test on ${{ matrix.os }} with python 3.10
run: uv run --all-extras --managed-python --python 3.10 pytest
Expand Down