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 ae9199e commit 94fd114Copy full SHA for 94fd114
.github/workflows/django.yml
@@ -10,17 +10,18 @@ on:
10
jobs:
11
build:
12
13
- runs-on: ${{ matrix.os }}
+ runs-on: ubuntu-latest
14
strategy:
15
+ max-parallel: 4
16
matrix:
- os: [macos-latest, ubuntu-latest, windows-latest]
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