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 3645bc3 commit e102880Copy full SHA for e102880
.github/workflows/action.yml
@@ -11,11 +11,13 @@ jobs:
11
- flake8
12
- docs
13
- sqlite
14
- env:
15
- DJANGO_PATH: /tmp/django
16
steps:
17
- uses: actions/checkout@master
18
- - run: git clone https://github.com/django/django.git --depth=1 ${DJANGO_PATH}
+ - run: git clone https://github.com/django/django.git --depth=1 ${GITHUB_WORKSPACE}/django
19
- run: docker-compose pull --include-deps flake8
20
- run: docker-compose build --pull flake8
+ env:
+ DJANGO_PATH: ${GITHUB_WORKSPACE}/django
21
- run: docker-compose run flake8
22
23
0 commit comments