Skip to content

Commit 20c54eb

Browse files
committed
clean up workflow and job names
1 parent 3b7ef0b commit 20c54eb

File tree

6 files changed

+15
-14
lines changed

6 files changed

+15
-14
lines changed

.github/workflows/build-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build (Prod version and dev plotly.js version)
1+
name: Build
22

33
on:
44
push:
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
plotlyjs-dev-build:
10-
name: plotlyjs_dev_build
10+
name: plotly.js dev build
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v6
@@ -46,7 +46,7 @@ jobs:
4646
if-no-files-found: error
4747

4848
full-build:
49-
name: full_build
49+
name: Full prod build
5050
runs-on: ubuntu-latest
5151
steps:
5252
- uses: actions/checkout@v6

.github/workflows/check-formatting.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Check code formatting
1+
name: Check Python code formatting
22

33
on:
44
push:
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
check-code-formatting:
10-
name: check-code-formatting
10+
name: Run ruff check
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v6

.github/workflows/check-js-build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
on: push
2+
name: Check JS build
23

34
jobs:
45
check-js-build:

.github/workflows/run-percy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
python-311-percy:
11-
name: python_311_percy
11+
name: Run Percy
1212
runs-on: ubuntu-latest
1313
env:
1414
PERCY_ENABLED: "True"

.github/workflows/run-pytest.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Run Pytest test suites
1+
name: Test
22

33
on:
44
push:
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
test-core:
10-
name: test_core_py (${{ matrix.python-version }})
10+
name: Core tests (Python ${{ matrix.python-version }})
1111
runs-on: ubuntu-latest
1212
strategy:
1313
fail-fast: false
@@ -37,7 +37,7 @@ jobs:
3737
python -m pytest tests/test_core
3838
3939
test-optional:
40-
name: test_optional_py (${{ matrix.python-version }})
40+
name: Optional tests (Python ${{ matrix.python-version }})
4141
runs-on: ubuntu-latest
4242
strategy:
4343
fail-fast: false
@@ -109,7 +109,7 @@ jobs:
109109
python -m pytest -x test_init/test_lazy_imports.py
110110
111111
test-optional-legacy-pandas:
112-
name: test_optional_py-3.9_pandas-1.2.4
112+
name: Optional tests, Pandas 1 (Python 3.9, Pandas 1.2.4)
113113
runs-on: ubuntu-latest
114114
steps:
115115
- uses: actions/checkout@v6
@@ -178,7 +178,7 @@ jobs:
178178
python -m pytest -x test_init/test_lazy_imports.py
179179
180180
test-kaleido-v0:
181-
name: test_kaleido_v0 (3.12)
181+
name: Optional tests (Kaleido only), Kaleido v0 (Python 3.12, Kaleido v0.2.1)
182182
runs-on: ubuntu-latest
183183
steps:
184184
- uses: actions/checkout@v6

.github/workflows/test-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
name: Publish Python 🐍 distribution 📦 to PyPI and TestPyPI
1+
name: Test release
22

33
on:
44
workflow_dispatch
55

66
jobs:
77
build:
8-
name: Build distribution 📦
8+
name: Full prod build
99
runs-on: ubuntu-latest
1010

1111
steps:
@@ -47,7 +47,7 @@ jobs:
4747
path: dist/
4848

4949
publish-to-testpypi:
50-
name: Publish Python 🐍 distribution 📦 to TestPyPI
50+
name: Publish to TestPyPI
5151
needs:
5252
- build
5353
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)