Skip to content

Commit

Permalink
Build: Add setuptools installation step
Browse files Browse the repository at this point in the history
  • Loading branch information
SverreNystad committed Jan 3, 2024
1 parent 2ed5968 commit 5ba6058
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/django.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,15 @@ jobs:
max-parallel: 4
matrix:
python-version: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install setuptools
run: |
python -m pip install --upgrade pip setuptools
- name: Install Dependencies
run: |
cd backend
Expand Down

0 comments on commit 5ba6058

Please sign in to comment.