Skip to content

Commit 94fd114

Browse files
Updated GitHub Actions
1 parent ae9199e commit 94fd114

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/django.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,18 @@ on:
1010
jobs:
1111
build:
1212

13-
runs-on: ${{ matrix.os }}
13+
runs-on: ubuntu-latest
1414
strategy:
15+
max-parallel: 4
1516
matrix:
16-
os: [macos-latest, ubuntu-latest, windows-latest]
17+
python-version: [3.8, 3.9]
1718

1819
steps:
1920
- uses: actions/checkout@v4
20-
- name: Set up Python 3.9
21+
- name: Set up Python ${{ matrix.python-version }}
2122
uses: actions/setup-python@v4
2223
with:
23-
python-version: 3.9
24+
python-version: ${{ matrix.python-version }}
2425
- name: Install Dependencies
2526
run: |
2627
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)