File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- name : CodeEntropy Daily Checks
1+ name : CodeEntropy Daily
22
33on :
44 schedule :
@@ -11,16 +11,16 @@ concurrency:
1111
1212jobs :
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
Original file line number Diff line number Diff line change 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 :
You can’t perform that action at this time.
0 commit comments