File tree Expand file tree Collapse file tree 3 files changed +34
-38
lines changed Expand file tree Collapse file tree 3 files changed +34
-38
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : Run tests
2
+ on : [push]
3
+
4
+ jobs :
5
+ docs :
6
+ name : ${{ matrix.compose_app }}
7
+ strategy :
8
+ matrix :
9
+ compose_app :
10
+ - flake8
11
+ - docs
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - uses : actions/checkout@master
15
+ - run : git clone https://github.com/django/django.git --depth=1 ${GITHUB_WORKSPACE}/django
16
+ - run : docker-compose pull --include-deps ${{ matrix.compose_app }}
17
+ - run : DJANGO_PATH=${GITHUB_WORKSPACE}/django docker-compose build --pull ${{ matrix.compose_app }}
18
+ - run : DJANGO_PATH=${GITHUB_WORKSPACE}/django docker-compose run ${{ matrix.compose_app }}
19
+
20
+ sqlite :
21
+ name : sqlite
22
+ strategy :
23
+ matrix :
24
+ python_version :
25
+ - 3.6
26
+ - 3.7
27
+ runs-on : ubuntu-latest
28
+ steps :
29
+ - uses : actions/checkout@master
30
+ - run : git clone https://github.com/django/django.git --depth=1 ${GITHUB_WORKSPACE}/django
31
+ - run : docker-compose pull --include-deps sqlite
32
+ - run : DJANGO_PATH=${GITHUB_WORKSPACE}/django PYTHON_VERSION=${{ matrix.python_version }} docker-compose build --pull sqlite
33
+ - run : DJANGO_PATH=${GITHUB_WORKSPACE}/django PYTHON_VERSION=${{ matrix.python_version }} docker-compose run sqlite
34
+
You can’t perform that action at this time.
0 commit comments