Skip to content

Commit

Permalink
github action - test file updated
Browse files Browse the repository at this point in the history
  • Loading branch information
rkshaon committed Aug 7, 2024
1 parent ed54482 commit a39868f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,22 @@ jobs:

strategy:
matrix:
python-version: [3.8, 3.9, 3.10]
python-version: [3.8, 3.9, 3.10, 3.11, 3.12]

steps:
- uses: actions/checkout@v3
- name: Set up Python

- 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
pip install -r requirements.txt
- name: Run Tests
env:
DJANGO_SETTINGS_MODULE: 'chat.settings'
DJANGO_SETTINGS_MODULE: 'chat.settings' # Ensure this is your correct settings module
run: python manage.py test

0 comments on commit a39868f

Please sign in to comment.