Skip to content

chore(deps): Bump django-allauth from 0.58.2 to 65.2.0 #313

chore(deps): Bump django-allauth from 0.58.2 to 65.2.0

chore(deps): Bump django-allauth from 0.58.2 to 65.2.0 #313

Workflow file for this run

name: Django Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:13
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: github_actions
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11.4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Tests
run: |
python manage.py test
env:
DATABASE_URL: postgres://postgres:postgres@localhost:5432/github_actions