Skip to content

Feat: Added issue count in rank page #107

Feat: Added issue count in rank page

Feat: Added issue count in rank page #107

Workflow file for this run

name: Django-Automated-Testing
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v3
- name: Set up MySQL
run: |
sudo /etc/init.d/mysql start
mysql -uroot -proot -hlocalhost -P3306 -e "create database contrihub24_db;"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Tests
run: |
python manage.py test
- name: Running Flake8
run: |
python -m pip install flake8
flake8