Skip to content

Contibution.md is added #142

Contibution.md is added

Contibution.md is added #142

Workflow file for this run

name: Django CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Set execution permissions
run: chmod +x run_migrations.sh
- name: Run Django project
run: ./run_migrations.sh