Skip to content

Commit 3645bc3

Browse files
committed
Disable travis for now
1 parent cf8a300 commit 3645bc3

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

.github/workflows/action.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,20 @@ name: Run tests
22
on: [push]
33

44
jobs:
5-
build:
6-
# Job name is Greeting
5+
test:
76
name: Test
8-
# This job runs on Linux
9-
runs-on: ubuntu-latest
7+
strategy:
8+
matrix:
9+
python: [ '3.6', '3.7' ]
10+
compose_app:
11+
- flake8
12+
- docs
13+
- sqlite
14+
env:
15+
DJANGO_PATH: /tmp/django
1016
steps:
1117
- uses: actions/checkout@master
12-
- run: git clone https://github.com/django/django.git --depth=1 /tmp/django
13-
- run: export DJANGO_PATH=/tmp/django
18+
- run: git clone https://github.com/django/django.git --depth=1 ${DJANGO_PATH}
1419
- run: docker-compose pull --include-deps flake8
1520
- run: docker-compose build --pull flake8
1621
- run: docker-compose run flake8

0 commit comments

Comments
 (0)