From deb822704f1448dadf8d58ced3c88974e41836e5 Mon Sep 17 00:00:00 2001 From: GPS LSE Date: Sun, 29 Mar 2026 01:11:03 +0700 Subject: [PATCH 1/3] Create penguinfreev2 --- penguinfreev2 | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 penguinfreev2 diff --git a/penguinfreev2 b/penguinfreev2 new file mode 100644 index 00000000..9766b45d --- /dev/null +++ b/penguinfreev2 @@ -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: 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 + pip install -r requirements.txt + - name: Run Tests + run: | + python manage.py test From e831db4e92bf60c3b80e1d84c49cd51912c029e0 Mon Sep 17 00:00:00 2001 From: GPS LSE Date: Sun, 29 Mar 2026 01:11:43 +0700 Subject: [PATCH 2/3] Revert "Create penguinfreev2" --- penguinfreev2 | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 penguinfreev2 diff --git a/penguinfreev2 b/penguinfreev2 deleted file mode 100644 index 9766b45d..00000000 --- a/penguinfreev2 +++ /dev/null @@ -1,30 +0,0 @@ -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: 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 - pip install -r requirements.txt - - name: Run Tests - run: | - python manage.py test From 7bfd96cf32a12a2c0f83fd9303861ea5ad353825 Mon Sep 17 00:00:00 2001 From: GPS LSE Date: Sun, 29 Mar 2026 01:17:24 +0700 Subject: [PATCH 3/3] Create django.yml --- .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 00000000..9766b45d --- /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: 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 + pip install -r requirements.txt + - name: Run Tests + run: | + python manage.py test