2020-11-09 21:46:19 +03:00
|
|
|
name: CI
|
|
|
|
|
2020-11-09 22:38:16 +03:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
2020-11-09 21:46:19 +03:00
|
|
|
|
2022-02-22 01:50:19 +03:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-11-09 21:46:19 +03:00
|
|
|
jobs:
|
2021-11-26 18:41:50 +03:00
|
|
|
lint:
|
2020-11-09 21:46:19 +03:00
|
|
|
runs-on: ubuntu-latest
|
2021-11-26 18:41:50 +03:00
|
|
|
steps:
|
2022-03-02 12:17:47 +03:00
|
|
|
- uses: actions/checkout@v3
|
2022-03-01 18:25:18 +03:00
|
|
|
- uses: actions/setup-python@v3
|
2021-11-26 18:41:50 +03:00
|
|
|
with:
|
|
|
|
python-version: "3.9"
|
|
|
|
cache: pip
|
|
|
|
- name: Run pre-commit
|
|
|
|
uses: pre-commit/action@v2.0.3
|
2020-11-09 21:46:19 +03:00
|
|
|
|
2021-12-16 14:07:47 +03:00
|
|
|
tests:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
os:
|
|
|
|
- ubuntu-latest
|
|
|
|
- windows-latest
|
|
|
|
- macOS-latest
|
|
|
|
|
|
|
|
name: "Run tests"
|
|
|
|
runs-on: ${{ matrix.os }}
|
2020-11-09 21:46:19 +03:00
|
|
|
steps:
|
2022-03-02 12:17:47 +03:00
|
|
|
- uses: actions/checkout@v3
|
2022-03-01 18:25:18 +03:00
|
|
|
- uses: actions/setup-python@v3
|
2020-11-09 21:46:19 +03:00
|
|
|
with:
|
2021-11-20 00:52:04 +03:00
|
|
|
python-version: "3.9"
|
2021-11-24 19:12:24 +03:00
|
|
|
cache: pip
|
2020-11-09 21:46:19 +03:00
|
|
|
- name: Install dependencies
|
2021-12-16 14:07:47 +03:00
|
|
|
run: pip install -r requirements.txt
|
|
|
|
- name: Run tests
|
|
|
|
run: pytest tests
|
2020-11-09 22:01:29 +03:00
|
|
|
|
|
|
|
docker:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
script:
|
|
|
|
- name: Basic
|
|
|
|
args: ""
|
|
|
|
- name: Extended
|
2022-03-20 18:00:40 +03:00
|
|
|
args: "use_celery=y use_drf=y frontend_pipeline=Gulp"
|
2020-11-09 22:01:29 +03:00
|
|
|
|
2021-11-11 22:12:23 +03:00
|
|
|
name: "${{ matrix.script.name }} Docker"
|
2021-12-16 14:07:47 +03:00
|
|
|
runs-on: ubuntu-latest
|
2020-11-09 22:18:38 +03:00
|
|
|
env:
|
|
|
|
DOCKER_BUILDKIT: 1
|
|
|
|
COMPOSE_DOCKER_CLI_BUILD: 1
|
|
|
|
|
2020-11-09 22:01:29 +03:00
|
|
|
steps:
|
2022-03-02 12:17:47 +03:00
|
|
|
- uses: actions/checkout@v3
|
2022-03-01 18:25:18 +03:00
|
|
|
- uses: actions/setup-python@v3
|
2020-11-09 22:01:29 +03:00
|
|
|
with:
|
2021-11-20 00:52:04 +03:00
|
|
|
python-version: "3.9"
|
2021-11-24 19:12:24 +03:00
|
|
|
cache: pip
|
2021-12-22 11:14:00 +03:00
|
|
|
- name: Install dependencies
|
|
|
|
run: pip install -r requirements.txt
|
2020-11-09 22:01:29 +03:00
|
|
|
- name: Docker ${{ matrix.script.name }}
|
|
|
|
run: sh tests/test_docker.sh ${{ matrix.script.args }}
|
|
|
|
|
|
|
|
bare:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
script:
|
|
|
|
- name: With Celery
|
2022-03-20 18:00:40 +03:00
|
|
|
args: "use_celery=y frontend_pipeline='Django Compressor'"
|
2021-11-16 23:29:43 +03:00
|
|
|
- name: With Gulp
|
2022-03-20 18:00:40 +03:00
|
|
|
args: "frontend_pipeline='Gulp'"
|
2020-11-09 22:01:29 +03:00
|
|
|
|
2021-11-11 22:12:23 +03:00
|
|
|
name: "${{ matrix.script.name }} Bare metal"
|
2022-02-22 01:50:19 +03:00
|
|
|
runs-on: ubuntu-latest
|
2020-11-09 22:01:29 +03:00
|
|
|
services:
|
|
|
|
redis:
|
2020-11-09 22:06:49 +03:00
|
|
|
image: redis:5.0
|
2020-11-09 22:01:29 +03:00
|
|
|
ports:
|
|
|
|
- 6379:6379
|
|
|
|
postgres:
|
2020-11-09 22:06:49 +03:00
|
|
|
image: postgres:12
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
2020-11-09 22:23:48 +03:00
|
|
|
env:
|
|
|
|
POSTGRES_PASSWORD: postgres
|
2020-11-09 22:01:29 +03:00
|
|
|
|
|
|
|
env:
|
|
|
|
CELERY_BROKER_URL: "redis://localhost:6379/0"
|
2020-11-09 22:23:48 +03:00
|
|
|
# postgres://user:password@host:port/database
|
2020-11-09 22:28:09 +03:00
|
|
|
DATABASE_URL: "postgres://postgres:postgres@localhost:5432/postgres"
|
2020-11-09 22:01:29 +03:00
|
|
|
|
|
|
|
steps:
|
2022-03-02 12:17:47 +03:00
|
|
|
- uses: actions/checkout@v3
|
2022-03-01 18:25:18 +03:00
|
|
|
- uses: actions/setup-python@v3
|
2020-11-09 22:01:29 +03:00
|
|
|
with:
|
2021-11-16 23:29:43 +03:00
|
|
|
python-version: "3.9"
|
2021-11-24 19:12:24 +03:00
|
|
|
cache: pip
|
2021-12-23 00:52:45 +03:00
|
|
|
cache-dependency-path: |
|
|
|
|
requirements.txt
|
|
|
|
{{cookiecutter.project_slug}}/requirements/base.txt
|
|
|
|
{{cookiecutter.project_slug}}/requirements/local.txt
|
2021-12-22 11:14:00 +03:00
|
|
|
- name: Install dependencies
|
|
|
|
run: pip install -r requirements.txt
|
2022-02-25 23:32:43 +03:00
|
|
|
- uses: actions/setup-node@v3
|
2021-11-16 23:29:43 +03:00
|
|
|
with:
|
|
|
|
node-version: "16"
|
2020-11-09 22:01:29 +03:00
|
|
|
- name: Bare Metal ${{ matrix.script.name }}
|
|
|
|
run: sh tests/test_bare.sh ${{ matrix.script.args }}
|