Skip to content

Remove commented out Helm repository and update commands #87

Remove commented out Helm repository and update commands

Remove commented out Helm repository and update commands #87

Workflow file for this run

name: Django Build Check
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Copy .env-example to .env
run: cp .env-example .env
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv install --deploy --ignore-pipfile
- name: Check if Django project compiles
run: pipenv run python manage.py check