Skip to content

Create LICENSE

Create LICENSE #3

Workflow file for this run

# GitHub Actions for ilgi
name: Django CI
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
- name: Install dependencies
run: |
python -m pip install -r requirements.txt
- name: Lint with ruff
run: ruff check --output-format github
- name: Check code style with ruff
run: ruff format --check --diff
- name: Run tests
env:
SECRET_KEY: "django-ci-test"
DATABASE_URL: "sqlite://:memory:"
run: |
python manage.py test