Skip to content

Commit 005b9af

Browse files
committed
Update action step names [skip ci]
1 parent 67cb628 commit 005b9af

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

.github/workflows/prerelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This workflow will build and upload a Python Package to TestPyPI
22
# https://github.com/marketplace/actions/pypi-publish
3-
name: Testing Building and Publish Python Package to TestPyPI
3+
name: Test Building + Publishing to TestPyPI
44
on:
55
push:
66
branches: [main, develop]

.github/workflows/push.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Push Workflow
1+
name: Lint, test + build docs
22

33
on: [push]
44

@@ -28,15 +28,15 @@ jobs:
2828
run: |
2929
python -m pip install --upgrade pip
3030
pip install -e .[tests]
31-
- name: Run Ruff
31+
- name: Lint
3232
run: ruff check --output-format=github network_wrangler
33-
- name: Run tests with coverage and benchmarking
33+
- name: Run tests
3434
run: |
3535
pytest --junitxml=pytest.xml --cov-report "xml:coverage.xml" --benchmark-save=benchmark --benchmark-json=benchmark.json
3636
- name: Build docs
3737
run: |
3838
mike deploy --push ${{ github.ref_name }}
39-
- name: Update latest alias if on main branch
39+
- name: Update latest docs
4040
if: github.ref == 'refs/heads/main'
4141
run: |
4242
mike alias latest ${{ github.ref_name }} --push
@@ -62,4 +62,3 @@ jobs:
6262
with:
6363
pytest-xml-coverage-path: coverage.xml
6464
junitxml-path: pytest.xml
65-

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This workflow will build and upload a Python Package to PyPI
22
# https://github.com/marketplace/actions/pypi-publish
3-
name: Publish Python Package 📦 to PyPI
3+
name: Build + Publish Python Package 📦 to PyPI
44
on:
55
release:
66
types: [created]
@@ -69,4 +69,4 @@ jobs:
6969
pip install -e .[docs]
7070
- name: Build docs
7171
run: |
72-
mike deploy --push --update-aliases latest ${{ github.ref_name }}
72+
mike deploy --push --update-aliases latest ${{ github.ref_name }}

0 commit comments

Comments
 (0)