We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91fd021 commit 938a12fCopy full SHA for 938a12f
.github/workflows/test.yml
@@ -130,7 +130,10 @@ jobs:
130
- name: ⏬ Install Agda
131
if: ${{ steps.check-agda.outcome == 'failure'}}
132
run: |
133
- stack install --resolver=lts-24.1 --allow-different-user ${{ matrix.agda }}
+ AGDA_PKGNAME=${{ matrix.agda }}
134
+ STACK_RESOLVER=$([ "$AGDA_PKGNAME" == "Agda-2.6.4" ] && echo "nightly-2023-10-03
135
+" || echo "lts-24.1")
136
+ stack install --resolver=$STACK_RESOLVER --allow-different-user "$AGDA_PKGNAME"
137
echo "STACK_LOCAL_BIN=$(stack path --local-bin)" >> "$GITHUB_ENV"
138
139
- name: 📦 Move artefacts to ${{ env.DIST }}
0 commit comments