Skip to content

chore(deps): bump django from 5.2.7 to 5.2.8 in /server (#658) #558

chore(deps): bump django from 5.2.7 to 5.2.8 in /server (#658)

chore(deps): bump django from 5.2.7 to 5.2.8 in /server (#658) #558

# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Server unit tests
on:
push:
branches: [ main ]
paths:
- 'server/**'
pull_request:
branches: [ main ]
paths:
- 'server/**'
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: server
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
- name: Set up Python 3.10
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Django Unit Tests
timeout-minutes: 20
run: |
cp .env.local .env
python manage.py test