Skip to content

Commit

Permalink
fix: testing action
Browse files Browse the repository at this point in the history
  • Loading branch information
qasimgulzar committed Jul 18, 2024
1 parent 3ac0929 commit 1b588e9
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 30 deletions.
30 changes: 0 additions & 30 deletions .github/workflows/django.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Django CI

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@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements/development.txt
- name: Run Tests
run: |
python manage.py test

0 comments on commit 1b588e9

Please sign in to comment.