We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93153ca commit a4dad8fCopy full SHA for a4dad8f
.github/workflows/django.yml
@@ -87,9 +87,9 @@ jobs:
87
python manage.py makemigrations --dry-run --check --noinput
88
flake8 adhocracy-plus tests --exclude migrations,settings
89
90
- if [ "${{ github.ref }}" == "refs/heads/main" ] && [ "${{ github.event_name }}" == "push" ]; then
+ if [ "${{ github.ref }}" = "refs/heads/main" ] && [ "${{ github.event_name }}" = "push" ]; then
91
py.test --ds=adhocracy-plus.config.settings.travis --cov
92
- elif [ "${{ github.event_name }}" == "pull_request" ]; then
+ elif [ "${{ github.event_name }}" = "pull_request" ]; then
93
py.test --ds=adhocracy-plus.config.settings.travis --testmon --cov
94
fi
95
0 commit comments