Add github workflow more testing and linting

This commit is contained in:
Sirin Puenggun 2023-09-05 20:23:41 +07:00 committed by GitHub
parent 9fe17a15fd
commit 34b565e9d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

42
.github/workflows/django.yml vendored Normal file
View File

@ -0,0 +1,42 @@
name: Django Unit Tests and Linting
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.9, 3.10, 3.11]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Create and Activate Python Virtual Environment
run: |
python -m venv venv
source venv/bin/activate
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Linting with flake8
run: |
flake8 .
- name: Run Tests
run: |
python manage.py test