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