File tree Expand file tree Collapse file tree 3 files changed +21
-6
lines changed Expand file tree Collapse file tree 3 files changed +21
-6
lines changed Original file line number Diff line number Diff line change 1
- name : Run tests
1
+ name : Flake8 and docs
2
2
on : [push]
3
3
4
4
jobs :
5
5
test :
6
- name : Test
6
+ name : ${{ matrix.compose_app }}
7
7
strategy :
8
8
matrix :
9
9
compose_app :
Original file line number Diff line number Diff line change
1
+ name : sqlite
2
+ on : [push]
3
+
4
+ jobs :
5
+ test :
6
+ name : sqlite
7
+ strategy :
8
+ matrix :
9
+ python_version :
10
+ - 3.6
11
+ - 3.7
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 sqlite
17
+ - run : DJANGO_PATH=${GITHUB_WORKSPACE}/django PYTHON_VERSION=${{ matrix.python_version }} docker-compose build --pull sqlite
18
+ - run : DJANGO_PATH=${GITHUB_WORKSPACE}/django PYTHON_VERSION=${{ matrix.python_version }} docker-compose run sqlite
19
+
Original file line number Diff line number Diff line change 12
12
- COMPOSE_APP=docs
13
13
14
14
# Quick Runs. Lowest supported database and Python version.
15
- - COMPOSE_APP=sqlite PYTHON_VERSION=3.6
16
15
- COMPOSE_APP=sqlite-gis PYTHON_VERSION=3.6
17
16
- COMPOSE_APP=postgres PYTHON_VERSION=3.6 POSTGRES_VERSION=9.5
18
17
- COMPOSE_APP=postgres-gis PYTHON_VERSION=3.6 POSTGRES_VERSION=9.5 POSTGIS_VERSION=2.4
19
18
- COMPOSE_APP=mysql PYTHON_VERSION=3.6 MYSQL_VERSION=5.6
20
19
- COMPOSE_APP=mysql-gis PYTHON_VERSION=3.6 MYSQL_VERSION=5.6
21
20
- COMPOSE_APP=mariadb PYTHON_VERSION=3.6 MARIADB_VERSION=10.1
22
21
23
- # Sqlite
24
- - COMPOSE_APP=sqlite PYTHON_VERSION=3.7
25
-
26
22
# Sqlite gis:
27
23
- COMPOSE_APP=sqlite-gis PYTHON_VERSION=3.7
28
24
You can’t perform that action at this time.
0 commit comments