Skip to content

Commit c14cc0a

Browse files
committed
ci: standardize daily job naming with PR matrix format
1 parent 13a57dd commit c14cc0a

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/daily.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CodeEntropy Daily Checks
1+
name: CodeEntropy Daily
22

33
on:
44
schedule:
@@ -11,16 +11,16 @@ concurrency:
1111

1212
jobs:
1313
unit:
14-
name: Daily unit tests
14+
name: Unit (${{ matrix.os }}, ${{ matrix.python-version }})
1515
runs-on: ${{ matrix.os }}
16+
timeout-minutes: 30
1617
strategy:
1718
fail-fast: false
1819
matrix:
19-
os: [ubuntu-24.04, windows-2025, macos-15]
20+
os: [ubuntu-24.04, macos-15, windows-2025]
2021
python-version: ["3.12", "3.13", "3.14"]
21-
timeout-minutes: 30
2222
steps:
23-
- name: Checkout repo
23+
- name: Checkout
2424
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
2525

2626
- name: Set up Python ${{ matrix.python-version }}
@@ -29,10 +29,10 @@ jobs:
2929
python-version: ${{ matrix.python-version }}
3030
cache: pip
3131

32-
- name: Install CodeEntropy and its testing dependencies
32+
- name: Install (testing)
3333
run: |
34-
pip install --upgrade pip
35-
pip install -e .[testing]
34+
python -m pip install --upgrade pip
35+
python -m pip install -e .[testing]
3636
37-
- name: Run unit test suite
38-
run: pytest tests/unit -q
37+
- name: Pytest (unit) • ${{ matrix.os }} • py${{ matrix.python-version }}
38+
run: python -m pytest tests/unit -q

.github/workflows/pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
python -m pip install --upgrade pip
3333
python -m pip install -e .[testing]
3434
35-
- name: Pytest (unit) • ${{ matrix.os }} • py${{ matrix.python-version }}
35+
- name: Pytest (unit) • ${{ matrix.os }}, ${{ matrix.python-version }}
3636
run: python -m pytest tests/unit -q
3737

3838
regression-quick:

0 commit comments

Comments
 (0)