From a41e0ffa5d45836d0e0d969add2719905e572f65 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Mon, 10 Feb 2025 09:30:34 -0500 Subject: [PATCH] Create django.yml for Github Actions --- .github/workflows/django.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 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 0000000..286f9d0 --- /dev/null +++ b/.github/workflows/django.yml @@ -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.10, 3.11, 3.12] + + 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 poetry + poetry install + - name: Run Tests + run: | + pytest