Skip to content

Commit

Permalink
Remove matrix in CI tests (it's just 1 job)
Browse files Browse the repository at this point in the history
  • Loading branch information
czlee authored and philipbelesky committed Apr 17, 2022
1 parent 5635c64 commit efd6592
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/django.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@ jobs:
build-ubuntu:

runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.9]
node-version: [12.x]

services:
postgres:
Expand Down Expand Up @@ -55,14 +50,14 @@ jobs:
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Use Node.js ${{ matrix.node-version }}
python-version: 3.9
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
node-version: 12.x
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit efd6592

Please sign in to comment.