Delete .github/workflows directory

This commit is contained in:
Michachatz
2025-11-23 15:42:19 +01:00
committed by GitHub
parent 1ac918496d
commit 7811396791

View File

@@ -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.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
pip install -r requirments.txt
- name: Run Tests
run: |
python main.py test