Skip to content

Commit 25fea67

Browse files
committed
sanity check
1 parent 28be508 commit 25fea67

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/minimum.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
1515
os: [ubuntu-latest, windows-latest]
1616
include:
17-
- os: macos-13
17+
- os: macos-latest
1818
python-version: '3.8'
1919
- os: macos-latest
2020
python-version: '3.12'
@@ -24,9 +24,13 @@ jobs:
2424
uses: actions/setup-python@v5
2525
with:
2626
python-version: ${{ matrix.python-version }}
27+
- name: Print platform info
28+
run: |
29+
import platform
30+
print(platform.processor())
2731
- name: Install dependencies
2832
run: |
29-
python -m pip install --upgrade pip
33+
python -m pip install --upgrade pip==24.1
3034
python -m pip install invoke .[test]
3135
- name: Test with minimum versions
3236
run: invoke minimum

0 commit comments

Comments
 (0)