Skip to content

Commit 640d4c1

Browse files
committed
Unify action titles
1 parent 4624444 commit 640d4c1

File tree

8 files changed

+1088
-489
lines changed

8 files changed

+1088
-489
lines changed

.github/workflows/benchmarks.yml

+11-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CodSpeed
1+
name: Performance
22

33
on:
44
push:
@@ -11,20 +11,24 @@ jobs:
1111
benchmarks:
1212
name: 📈 Benchmarks
1313
runs-on: ubuntu-latest
14+
1415
steps:
1516
- uses: actions/checkout@v4
16-
- uses: actions/setup-python@v5
17+
18+
- name: Set up Python 3.12
19+
uses: actions/setup-python@v5
1720
id: setup-python
1821
with:
1922
python-version: "3.12"
2023
architecture: x64
2124

22-
- run: pipx install poetry
23-
24-
- run: poetry env use 3.12
25-
- run: poetry install --with test
25+
- name: Install with poetry
26+
run: |
27+
pipx install poetry
28+
poetry env use 3.12
29+
poetry install --with test
2630
27-
- name: Run benchmarks
31+
- name: Run benchmarks with CodSpeed
2832
uses: CodSpeedHQ/action@v3
2933
with:
3034
token: ${{ secrets.CODSPEED_TOKEN }}

.github/workflows/lint.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on: [push, pull_request]
44

55
jobs:
66
lint:
7+
name: 🧹 Lint
78
runs-on: ubuntu-latest
89

910
steps:

.github/workflows/publish.yml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77

88
jobs:
99
build:
10+
name: 🏗️ Build
1011
runs-on: ubuntu-latest
1112

1213
steps:

.github/workflows/test.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on: [push, pull_request]
44

55
jobs:
66
tests:
7+
name: 🧪 Tests
78
runs-on: ubuntu-latest
89

910
strategy:

0 commit comments

Comments
 (0)