File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 6
6
name : Test
7
7
strategy :
8
8
matrix :
9
- python : [ '3.6', '3.7' ]
10
9
compose_app :
11
10
- flake8
12
11
- docs
13
- - sqlite
14
12
runs-on : ubuntu-latest
15
13
steps :
16
14
- uses : actions/checkout@master
17
15
- run : git clone https://github.com/django/django.git --depth=1 ${GITHUB_WORKSPACE}/django
18
- - run : docker-compose pull --include-deps flake8
19
- - run : DJANGO_PATH=${GITHUB_WORKSPACE}/django docker-compose build --pull flake8
20
- - run : DJANGO_PATH=${GITHUB_WORKSPACE}/django docker-compose run flake8
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 }}
21
19
You can’t perform that action at this time.
0 commit comments