We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7246062 commit 46c2392Copy full SHA for 46c2392
.github/workflows/ci.yml
@@ -91,6 +91,7 @@ jobs:
91
92
downstream_tests:
93
strategy:
94
+ fail-fast: false
95
matrix:
96
downstream_project: [loopy, grudge, pytential, pytato]
97
name: Tests for downstream project ${{ matrix.downstream_project }}
@@ -103,6 +104,11 @@ jobs:
103
104
run: |
105
curl -L -O https://tiker.net/ci-support-v0
106
. ./ci-support-v0
- test_downstream "$DOWNSTREAM_PROJECT"
107
+
108
+ if [[ "$DOWNSTREAM_PROJECT" == "grudge" && "$GITHUB_HEAD_REF" == "equality-mapper" ]]; then
109
+ test_downstream "$DOWNSTREAM_PROJECT"
110
+ else
111
+ test_downstream "https://github.com/alexfikl/$DOWNSTREAM_PROJECT.git@equality-mapper"
112
+ fi
113
114
# vim: sw=4
0 commit comments