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 91bc5c6 commit d89f99eCopy full SHA for d89f99e
1 file changed
.github/workflows/agda.yml
@@ -38,14 +38,18 @@ jobs:
38
run: |
39
mkdir -p "$HOME/.agda"
40
41
+ STDLIB_COPY="$RUNNER_TEMP/agda-stdlib-copy"
42
+ mkdir -p "$STDLIB_COPY"
43
+ cp -a "${{ steps.stdlib.outputs.stdlib_dir }}/." "$STDLIB_COPY/"
44
+
45
STDLIB_LIB="$RUNNER_TEMP/standard-library.agda-lib"
46
cat > "$STDLIB_LIB" <<EOF
47
name: standard-library
- include: ${{ steps.stdlib.outputs.stdlib_dir }}
48
+ include: $STDLIB_COPY
49
EOF
50
51
printf '%s\n' "$STDLIB_LIB" > "$HOME/.agda/libraries"
52
printf '%s\n' "standard-library" > "$HOME/.agda/defaults"
53
54
- name: Typecheck full suite
- run: agda --local-interfaces -i proofs/agda proofs/agda/All.agda
55
+ run: agda -i proofs/agda proofs/agda/All.agda
0 commit comments