Skip to content

Commit 72b7fd0

Browse files
Updated GitHub Actions
1 parent dcf9ee6 commit 72b7fd0

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/django.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,17 @@ jobs:
1111
build:
1212

1313
runs-on: ubuntu-latest
14+
strategy:
15+
max-parallel: 4
16+
matrix:
17+
python-version: [3.8, 3.9]
1418

1519
steps:
1620
- uses: actions/checkout@v4
17-
- name: Set up Python 3.9
21+
- name: Set up Python ${{ matrix.python-version }}
1822
uses: actions/setup-python@v4
1923
with:
20-
python-version: 3.9
24+
python-version: ${{ matrix.python-version }}
2125
- name: Install Dependencies
2226
run: |
2327
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)