Skip to content

Merge pull request #83 from i-dot-ai/feature/open-source-prep #63

Merge pull request #83 from i-dot-ai/feature/open-source-prep

Merge pull request #83 from i-dot-ai/feature/open-source-prep #63

Workflow file for this run

name: Django
env:
DOCKER_BUILDKIT: 1
on:
push:
branches:
- 'main'
- 'feature/**'
- 'chore/**'
- 'bugfix/**'
- 'hotfix/**'
- 'develop'
workflow_dispatch:
jobs:
check_migrations:
name: Check migrations
runs-on: ubuntu-latest
environment: release
steps:
- uses: actions/checkout@v3
- name: Copy env file
run: |
cp .env.example .env
- name: Run migrations
run: |
make check-migrations
run_tests:
name: Run tests
runs-on: ubuntu-latest
environment: release
steps:
- uses: actions/checkout@v3
- name: Copy env file
run: |
cp .env.example .env
- name: Run tests
run: |
make test-django