Skip to content

Commit 1d6cc39

Browse files
Create django.yml
1 parent 99d84ec commit 1d6cc39

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/django.yml

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

0 commit comments

Comments
 (0)