We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcf9ee6 commit 72b7fd0Copy full SHA for 72b7fd0
.github/workflows/django.yml
@@ -11,13 +11,17 @@ jobs:
11
build:
12
13
runs-on: ubuntu-latest
14
+ strategy:
15
+ max-parallel: 4
16
+ matrix:
17
+ python-version: [3.8, 3.9]
18
19
steps:
20
- uses: actions/checkout@v4
- - name: Set up Python 3.9
21
+ - name: Set up Python ${{ matrix.python-version }}
22
uses: actions/setup-python@v4
23
with:
- python-version: 3.9
24
+ python-version: ${{ matrix.python-version }}
25
- name: Install Dependencies
26
run: |
27
python -m pip install --upgrade pip
0 commit comments