Skip to content

Commit e1fd632

Browse files
author
Agus Makmun
committed
fix: remove windows from test matrix
1 parent ed82074 commit e1fd632

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ on:
77
pull_request:
88
branches: [ master ]
99

10+
# https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django
1011
jobs:
1112
build:
1213
runs-on: ${{ matrix.os }}
1314

14-
# https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django
1515
strategy:
1616
matrix:
1717
os: [ macos-latest, ubuntu-latest ]
@@ -44,17 +44,11 @@ jobs:
4444
django-version: "5.0.3"
4545

4646
steps:
47-
- name: Install system dependencies (windows)
48-
if: matrix.os == 'windows-latest'
49-
uses: msys2/setup-msys2@v2
50-
with:
51-
update: true
52-
install: zlib
53-
54-
- uses: actions/checkout@v4
47+
- name: Checkout code
48+
uses: actions/checkout@v4
5549

5650
- name: Set up Python ${{ matrix.python-version }}
57-
uses: actions/setup-python@v4
51+
uses: actions/setup-python@v2
5852
with:
5953
python-version: ${{ matrix.python-version }}
6054

@@ -63,6 +57,7 @@ jobs:
6357
pip install -q Django==${{ matrix.django-version }}
6458
python -m pip install --upgrade pip
6559
python setup.py install
60+
6661
- name: Test with pytest
6762
run: |
6863
python runtests.py

0 commit comments

Comments
 (0)