Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Unit test for about us and contact page #53

Unit test for about us and contact page

Unit test for about us and contact page #53

Workflow file for this run

name: Django CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
ln -f -s ./yummy/.env.actions ./yummy/.env
- name: Run Tests
run: |
python manage.py test