Skip to content

Commit

Permalink
Create django.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
guglielmo authored Apr 9, 2024
1 parent 153bd8f commit 17b3bb6
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/django.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
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.8, 3.9, 3.10, 3.11]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies from pyproject.toml
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Test with Django's test framework
run: python demoproject/manage.py test

0 comments on commit 17b3bb6

Please sign in to comment.