From a14a04e2d256d2ca9971f1b917fdc09031c3552b Mon Sep 17 00:00:00 2001 From: melchorrangelyasaira-tech Date: Sat, 6 Sep 2025 04:48:41 -0600 Subject: [PATCH] Create django.yml con-6e6988f8c9c3118904e77b05cc725e8954a4f65099dbb8b7785a31c8fb6e99a3 --- .github/workflows/django.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 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 0000000000..eb3c1e9976 --- /dev/null +++ b/.github/workflows/django.yml @@ -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.7, 3.8, 3.9] + + steps: + - uses: control + shift + m + - 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 + run: | + python manage.py test