Skip to content

Commit 564831c

Browse files
ci/cd: add names to the jobs in the ci-testing.yml file
1 parent 8b56344 commit 564831c

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/ci-testing-unit.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
name: CI testing [unit testing]
1+
name: Testing
22

33
on: [push, pull_request]
44

55
jobs:
66
lint:
7+
name: Lint Code
78
runs-on: ubuntu-latest
89
steps:
910
- uses: actions/checkout@v4
@@ -16,10 +17,11 @@ jobs:
1617
run: .venv/bin/ruff format --check .
1718

1819
test:
20+
name: Unit Testing
1921
runs-on: ubuntu-latest
2022
strategy:
2123
matrix:
22-
python-version: ['3.10', '3.11', '3.12', '3.13']
24+
python-version: ['3.10', '3.12']
2325
steps:
2426
- uses: actions/checkout@v4
2527
- uses: ./.github/actions/setup

0 commit comments

Comments
 (0)