Skip to content

Commit afceba6

Browse files
committed
fix (CI): editing CI and jobs names, adding python versions
1 parent 7ab8cae commit afceba6

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 4 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,12 +10,12 @@ 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:
18-
python-version: ["3.9", "3.10", "3.11"]
18+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1919

2020
steps:
2121
- uses: actions/checkout@v5
@@ -65,6 +65,7 @@ jobs:
6565
bash tests/test_local.bash
6666
bash tests/test_remote.bash
6767
lint:
68+
name: Lint with Ruff
6869
runs-on: ubuntu-latest
6970
steps:
7071
- uses: actions/checkout@v5

0 commit comments

Comments
 (0)