Skip to content

ss of establishing CI pipeline on GitHub Actions #53

ss of establishing CI pipeline on GitHub Actions

ss of establishing CI pipeline on GitHub Actions #53

Workflow file for this run

name: Django CI
on:
push:
branches:
- rent_sumaita
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set Up Python
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Tests
run: |
cd BharaHobe
python manage.py test