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:
|
|
|
|
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 }}
|
|
|
|
uses: actions/setup-python@v3
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install Dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -r requirements.txt
|
|
|
|
- name: Run Tests
|
|
|
|
run: |
|
2023-01-11 09:26:58 -05:00
|
|
|
python manage.py test
|