-
Notifications
You must be signed in to change notification settings - Fork 0
executable file
·57 lines (41 loc) · 875 Bytes
/
django.yml
File metadata and controls
executable file
·57 lines (41 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Django CI
2 months ago
Actualizar django.yml
on: [push, pull_request]
2 months ago
Create django.yml
jobs:
2 months ago
Actualizar django.yml
test:
2 months ago
Create django.yml
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2 months ago
Actualizar django.yml
- name: Set up Python
uses: actions/setup-python@v4
2 months ago
Create django.yml
with:
2 months ago
Actualizar django.yml
python-version: '3.10' # Versión moderna y soportada
cache: 'pip'
- name: Install dependencies
2 months ago
Create django.yml
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
2 months ago
Actualizar django.yml
- name: Run tests
2 months ago
Create django.yml
run: |
2 months ago
Update django.yml
python /manage.py test