Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/pip/urllib3-1.26.18
Browse files Browse the repository at this point in the history
  • Loading branch information
panicoro authored Mar 7, 2024
2 parents 98341d7 + 067bfec commit aece61a
Show file tree
Hide file tree
Showing 3 changed files with 822 additions and 214 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/django.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Django CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.7, 3.8, 3.9]

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
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Tests
run: |
python manage.py test
Loading

0 comments on commit aece61a

Please sign in to comment.