-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (47 loc) · 1.45 KB
/
unit-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: Unit tests, linting & formatting
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
name: Flagsmith Workflows Unit Tests
env:
DATABASE_URL: postgres://postgres:postgres@localhost:5432/flagsmith_task_processor
DJANGO_SETTINGS_MODULE: tests.settings
services:
postgres:
image: postgres:15.5-alpine
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports: ['5432:5432']
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
strategy:
max-parallel: 4
matrix:
python-version: ['3.11', '3.12']
steps:
- name: Cloning repo
uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install Dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install
- name: Run Linters
run: |
poetry run black --check .
poetry run isort --check-only --diff .
poetry run flake8
- name: Check for missing migrations
run: poetry run python manage.py makemigrations --no-input --dry-run --check
- name: Run Tests
run: poetry run pytest tests/unit