We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa7733e commit 5112277Copy full SHA for 5112277
.github/workflows/tests.yml
@@ -49,10 +49,12 @@ jobs:
49
- uses: ./.github/setup_evap
50
with:
51
start-db: true
52
-
53
- - run: python manage.py reload_testdata --noinput
54
- - run: python manage.py dump_testdata
55
- - run: git diff --exit-code
+ - name: Create new test_data.json
+ run: |
+ python manage.py reload_testdata --noinput
+ python manage.py dump_testdata
56
+ - name: Check if test_data.json changed
57
+ run: git diff --exit-code
58
59
mypy:
60
runs-on: ubuntu-22.04
0 commit comments