Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
L
library-app-django
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ilham Maulana
library-app-django
Commits
e9888012
Commit
e9888012
authored
Jul 16, 2024
by
Ilham Maulana Pratama
Committed by
Ilham Maulana
Aug 04, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test Build #1
parent
3a1e7ff4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
0 deletions
+30
-0
django.yml
.github/workflows/django.yml
+30
-0
No files found.
.github/workflows/django.yml
0 → 100644
View file @
e9888012
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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment