We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf8a300 commit 3645bc3Copy full SHA for 3645bc3
.github/workflows/action.yml
@@ -2,15 +2,20 @@ name: Run tests
2
on: [push]
3
4
jobs:
5
- build:
6
- # Job name is Greeting
+ test:
7
name: Test
8
- # This job runs on Linux
9
- runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ python: [ '3.6', '3.7' ]
10
+ compose_app:
11
+ - flake8
12
+ - docs
13
+ - sqlite
14
+ env:
15
+ DJANGO_PATH: /tmp/django
16
steps:
17
- uses: actions/checkout@master
- - run: git clone https://github.com/django/django.git --depth=1 /tmp/django
- - run: export DJANGO_PATH=/tmp/django
18
+ - run: git clone https://github.com/django/django.git --depth=1 ${DJANGO_PATH}
19
- run: docker-compose pull --include-deps flake8
20
- run: docker-compose build --pull flake8
21
- run: docker-compose run flake8
0 commit comments