2020-11-09 21:46:19 +03:00
|
|
|
name: CI
|
|
|
|
|
2020-11-09 22:38:16 +03:00
|
|
|
on:
|
|
|
|
push:
|
2023-04-15 14:15:15 +03:00
|
|
|
branches: ["master", "main"]
|
2020-11-09 22:38:16 +03:00
|
|
|
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-12-16 14:07:47 +03:00
|
|
|
tests:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
os:
|
|
|
|
- ubuntu-latest
|
|
|
|
- windows-latest
|
|
|
|
- macOS-latest
|
|
|
|
|
2023-01-29 15:12:12 +03:00
|
|
|
name: "pytest ${{ matrix.os }}"
|
2021-12-16 14:07:47 +03:00
|
|
|
runs-on: ${{ matrix.os }}
|
2020-11-09 21:46:19 +03:00
|
|
|
steps:
|
2023-09-06 22:40:35 +03:00
|
|
|
- uses: actions/checkout@v4
|
2023-12-07 12:20:42 +03:00
|
|
|
- uses: actions/setup-python@v5
|
2020-11-09 21:46:19 +03:00
|
|
|
with:
|
2024-03-18 21:55:00 +03:00
|
|
|
python-version: "3.12"
|
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
|
2023-04-15 17:53:31 +03:00
|
|
|
run: pytest -n auto tests
|
2020-11-09 22:01:29 +03:00
|
|
|
|
|
|
|
docker:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
script:
|
|
|
|
- name: Basic
|
2023-04-15 13:53:15 +03:00
|
|
|
args: "ci_tool=Gitlab"
|
2023-01-29 15:12:12 +03:00
|
|
|
- name: Celery & DRF
|
|
|
|
args: "use_celery=y use_drf=y"
|
|
|
|
- name: Gulp
|
|
|
|
args: "frontend_pipeline=Gulp"
|
|
|
|
- name: Webpack
|
|
|
|
args: "frontend_pipeline=Webpack"
|
2020-11-09 22:01:29 +03:00
|
|
|
|
2023-01-29 15:12:12 +03:00
|
|
|
name: "Docker ${{ matrix.script.name }}"
|
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:
|
2023-09-06 22:40:35 +03:00
|
|
|
- uses: actions/checkout@v4
|
2023-12-07 12:20:42 +03:00
|
|
|
- uses: actions/setup-python@v5
|
2020-11-09 22:01:29 +03:00
|
|
|
with:
|
2024-03-18 21:55:00 +03:00
|
|
|
python-version: "3.12"
|
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:
|
2023-01-29 15:12:12 +03:00
|
|
|
- name: Celery
|
2022-03-20 18:00:40 +03:00
|
|
|
args: "use_celery=y frontend_pipeline='Django Compressor'"
|
2023-01-29 15:12:12 +03:00
|
|
|
- name: Gulp
|
|
|
|
args: "frontend_pipeline=Gulp"
|
|
|
|
- name: Webpack
|
2023-04-15 13:53:15 +03:00
|
|
|
args: "frontend_pipeline=Webpack use_heroku=y"
|
|
|
|
- name: Email Username
|
2023-08-15 01:00:26 +03:00
|
|
|
args: "username_type=email ci_tool=Github project_name='Something superduper long - the great amazing project' project_slug=my_awesome_project"
|
2020-11-09 22:01:29 +03:00
|
|
|
|
2023-01-29 15:12:12 +03:00
|
|
|
name: "Bare metal ${{ matrix.script.name }}"
|
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:
|
2023-09-06 22:40:35 +03:00
|
|
|
- uses: actions/checkout@v4
|
2023-12-07 12:20:42 +03:00
|
|
|
- uses: actions/setup-python@v5
|
2020-11-09 22:01:29 +03:00
|
|
|
with:
|
2024-03-18 21:55:00 +03:00
|
|
|
python-version: "3.12"
|
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
|
2023-10-24 12:43:57 +03:00
|
|
|
- uses: actions/setup-node@v4
|
2021-11-16 23:29:43 +03:00
|
|
|
with:
|
2023-12-04 12:58:02 +03:00
|
|
|
node-version: "20"
|
2020-11-09 22:01:29 +03:00
|
|
|
- name: Bare Metal ${{ matrix.script.name }}
|
|
|
|
run: sh tests/test_bare.sh ${{ matrix.script.args }}
|