Skip to content

Commit a36568c

Browse files
committed
Changes made in the css
2 parents 16d67a3 + cb71c70 commit a36568c

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

.github/workflows/django.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Django CI
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
strategy:
14+
max-parallel: 4
15+
matrix:
16+
python-version: [3.7, 3.8, 3.9]
17+
18+
steps:
19+
- uses: actions/checkout@v4
20+
- name: Set up Python ${{ matrix.python-version }}
21+
uses: actions/setup-python@v3
22+
with:
23+
python-version: ${{ matrix.python-version }}
24+
- name: Install Dependencies
25+
run: |
26+
python -m pip install --upgrade pip
27+
pip install -r requirements.txt
28+
- name: Run Tests
29+
run: |
30+
python manage.py test

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<img width="1147" alt="image" src="https://github.com/user-attachments/assets/23e8c109-0d61-4c73-a7e8-198dceec2aea">
2+
3+
<img width="1147" alt="image" src="https://github.com/user-attachments/assets/7a6f9be9-4f44-46b1-8e5f-e819e296656d">
4+
5+
<img width="1439" alt="image" src="https://github.com/user-attachments/assets/b78718b0-1e66-4d3b-9755-68920c9bd6b9">
6+
7+
<img width="1439" alt="image" src="https://github.com/user-attachments/assets/ef2cfaba-6934-4aa4-8383-470ed159a57c">
8+

0 commit comments

Comments
 (0)