From 34b565e9d830d363c30cd1b170c958f28cec62fc Mon Sep 17 00:00:00 2001 From: Sirin Puenggun Date: Tue, 5 Sep 2023 20:23:41 +0700 Subject: [PATCH] Add github workflow more testing and linting --- .github/workflows/django.yml | 42 ++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/django.yml diff --git a/.github/workflows/django.yml b/.github/workflows/django.yml new file mode 100644 index 0000000..ddb53b5 --- /dev/null +++ b/.github/workflows/django.yml @@ -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