mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-01-24 08:14:13 +03:00
Basic CI workflow using github actions
This commit is contained in:
parent
041ecb0fc6
commit
1abfd539e3
33
.github/workflows/ci.yml
vendored
Normal file
33
.github/workflows/ci.yml
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
name: CI
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
script:
|
||||
- name: Test results
|
||||
run: tox -e py38
|
||||
- name: Black template
|
||||
run: tox -e black-template
|
||||
- name: Basic Docker
|
||||
run: sh tests/test_docker.sh
|
||||
- name: Extended Docker
|
||||
run: sh tests/test_docker.sh use_celery=y use_drf=y js_task_runner=Gulp
|
||||
- name: Bare metal
|
||||
run: sh tests/test_bare.sh use_celery=y use_compressor=y
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: 3.8
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install -U pip
|
||||
python -m pip install -U tox
|
||||
- name: ${{ matrix.script.name }}
|
||||
run: ${{ matrix.script.run }}
|
36
.travis.yml
36
.travis.yml
|
@ -1,36 +0,0 @@
|
|||
services:
|
||||
- docker
|
||||
|
||||
language: python
|
||||
|
||||
python: 3.8
|
||||
|
||||
before_install:
|
||||
- docker-compose -v
|
||||
- docker -v
|
||||
|
||||
matrix:
|
||||
include:
|
||||
- name: Test results
|
||||
script: tox -e py38
|
||||
- name: Black template
|
||||
script: tox -e black-template
|
||||
- name: Basic Docker
|
||||
script: sh tests/test_docker.sh
|
||||
- name: Extended Docker
|
||||
script: sh tests/test_docker.sh use_celery=y use_drf=y js_task_runner=Gulp
|
||||
- name: Bare metal
|
||||
script: sh tests/test_bare.sh use_celery=y use_compressor=y
|
||||
services:
|
||||
- postgresql
|
||||
- redis-server
|
||||
env:
|
||||
- CELERY_BROKER_URL=redis://localhost:6379/0
|
||||
|
||||
install:
|
||||
- pip install tox
|
||||
|
||||
notifications:
|
||||
email:
|
||||
on_success: change
|
||||
on_failure: always
|
Loading…
Reference in New Issue
Block a user