mirror of
https://github.com/Sosokker/ku-polls.git
synced 2025-12-20 05:54:04 +01:00
Add github workflow more testing and linting
This commit is contained in:
parent
9fe17a15fd
commit
34b565e9d8
42
.github/workflows/django.yml
vendored
Normal file
42
.github/workflows/django.yml
vendored
Normal 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
|
||||||
Loading…
Reference in New Issue
Block a user