Skip to content

Commit 7ea4761

Browse files
committed
fix (CI): upgraded java version and editing CI names
1 parent 7ab8cae commit 7ea4761

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
22
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
33

4-
name: Test with PyTest
4+
name: language_tool_python CI
55

66
on:
77
push:
@@ -10,8 +10,8 @@ on:
1010
branches: [ master ]
1111

1212
jobs:
13-
build:
14-
13+
tests:
14+
name: Test on Python ${{ matrix.python-version }}
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
@@ -25,12 +25,11 @@ jobs:
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727

28-
- name: Set up JDK 21
28+
- name: Set up JDK 25
2929
uses: actions/setup-java@v5
3030
with:
3131
distribution: 'temurin'
32-
java-version: '21'
33-
32+
java-version: '25'
3433
- name: Create and activate virtualenv
3534
run: |
3635
python -m venv venv
@@ -65,6 +64,7 @@ jobs:
6564
bash tests/test_local.bash
6665
bash tests/test_remote.bash
6766
lint:
67+
name: Lint with Ruff
6868
runs-on: ubuntu-latest
6969
steps:
7070
- uses: actions/checkout@v5

0 commit comments

Comments
 (0)