Skip to content

warning to part upload #164

warning to part upload

warning to part upload #164

Workflow file for this run

name: Django CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
max-parallel: 4
matrix:
python-version: [3.9, ]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Copy Local Settings
shell: bash
run: |
cp bom/local_settings.py.example bom/local_settings.py
- name: Install Dependencies
run: |
python -m pip install --upgrade pip pipenv
pipenv install --deploy --dev
- name: Run Tests
run: |
pipenv run python manage.py test