Skip to content

Bump actions/setup-python from 4.7.0 to 5.0.0 #211

Bump actions/setup-python from 4.7.0 to 5.0.0

Bump actions/setup-python from 4.7.0 to 5.0.0 #211

Workflow file for this run

name: Django CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python3 -m pip install --upgrade pip
cd backend/api/lexical
pip3 install -r requirements.txt
- name: Run Django unit tests
run: |
cd backend/api/lexical
python3 manage.py test