Skip to content

Commit 2b50cfb

Browse files
committed
Workflows naming normalization
1 parent 78b5fc6 commit 2b50cfb

File tree

4 files changed

+14
-12
lines changed

4 files changed

+14
-12
lines changed

.github/workflows/build-docs.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
name: Build documentation
1+
name: CI / Docs
22

33
on:
44
push:
55
pull_request:
66
types: [opened, synchronize]
77

88
jobs:
9-
build:
9+
docs_build:
10+
name: "Build"
1011
runs-on: ubuntu-latest
1112
steps:
1213
- uses: actions/checkout@v6

.github/workflows/integration-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI / Integrations
1+
name: CI / Integrations / Tests
22

33
on:
44
push:
@@ -14,8 +14,8 @@ permissions:
1414
id-token: write
1515

1616
jobs:
17-
integration:
18-
name: "Integration / ${{ matrix.target.label }} / py${{ matrix.python-version }}"
17+
integration_matrix:
18+
name: "${{ matrix.target.label }} / py${{ matrix.python-version }}"
1919
runs-on: ubuntu-latest
2020
strategy:
2121
matrix:

.github/workflows/python-publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This workflow will upload a Python Package using Twine when a release is created
22
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
33

4-
name: Publish python packages
4+
name: CI / Publish
55

66
on:
77
workflow_dispatch:
@@ -10,7 +10,8 @@ on:
1010
- published
1111

1212
jobs:
13-
publish:
13+
publish_pypi:
14+
name: "PyPI"
1415
runs-on: ubuntu-latest
1516
permissions:
1617
id-token: write

.github/workflows/python-test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
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 python code
4+
name: CI / Core / Tests
55

66
on:
77
push:
88
pull_request:
99
types: [opened, synchronize]
1010

1111
jobs:
12-
test:
13-
name: "Tests"
12+
core_tests:
13+
name: "py${{ matrix.python-version }}"
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
@@ -64,8 +64,8 @@ jobs:
6464
- name: Upload coverage
6565
uses: codecov/codecov-action@v5
6666

67-
static-checks:
68-
name: "Static checks"
67+
static_checks:
68+
name: "Core / Static Checks"
6969
runs-on: ubuntu-latest
7070
steps:
7171
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"

0 commit comments

Comments
 (0)