2020-12-13 05:42:28 +00:00
|
|
|
name: Run Django tests for TubeSync
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2020-12-13 05:49:10 +00:00
|
|
|
- main
|
2020-12-13 05:42:28 +00:00
|
|
|
pull_request:
|
|
|
|
branches:
|
2020-12-13 05:49:10 +00:00
|
|
|
- main
|
2020-12-13 05:42:28 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
python-version: [3.7, 3.8, 3.9]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install Python ${{ matrix.python-version }}
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install pipenv
|
2020-12-13 05:50:59 +00:00
|
|
|
pipenv install --system
|
2020-12-13 05:57:10 +00:00
|
|
|
- name: Set up Django environment
|
|
|
|
run: cp tubesync/tubesync/local_settings.py.example tubesync/tubesync/local_settings.py
|
2020-12-13 05:42:28 +00:00
|
|
|
- name: Run Django tests
|
2020-12-13 05:54:08 +00:00
|
|
|
run: cd tubesync && python3 manage.py test --verbosity=2
|