lib.itmens/.github/workflows/django.yml

45 lines
1,016 B
YAML
Raw Normal View History

2022-12-16 12:15:32 -05:00
name: all tests
2022-12-16 09:53:06 -05:00
on:
push:
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
services:
2023-05-22 20:14:14 -04:00
redis:
image: redis
ports:
- 6379:6379
2022-12-16 09:53:06 -05:00
db:
image: postgres:12.13-alpine
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: admin123
POSTGRES_DB: test
ports:
- 5432:5432
options: --mount type=tmpfs,destination=/var/lib/postgresql/data --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
strategy:
max-parallel: 4
matrix:
2023-01-11 09:41:55 -05:00
python-version: ['3.10', '3.11']
2022-12-16 09:53:06 -05:00
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
2023-08-11 01:43:19 -04:00
uses: actions/setup-python@v4
2022-12-16 09:53:06 -05:00
with:
python-version: ${{ matrix.python-version }}
2023-08-11 01:43:19 -04:00
cache: pip
2022-12-16 09:53:06 -05:00
- name: Install Dependencies
run: |
pip install -r requirements.txt
- name: Run Tests
run: |
2023-01-11 09:26:58 -05:00
python manage.py test