Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
if [[ '${{ github.ref }}' == 'refs/heads/experimental' \
|| '${{ github.base_ref }}' == 'experimental' ]]; then
# Pick Agda version for experimental
echo "AGDA_COMMIT=tags/v2.8.0" >> "${GITHUB_ENV}";
echo "AGDA_COMMIT=f3697415ac835c4e0898fb7eb0a5a46e313c2065" >> "${GITHUB_ENV}";
echo "AGDA_HTML_DIR=html/experimental" >> "${GITHUB_ENV}"
else
# Pick Agda version for master
Expand Down
2 changes: 2 additions & 0 deletions src/Data/Record.agda
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ mutual
-- Record is a record type to ensure that the signature can be
-- inferred from a value of type Record Sig.

{-# ETA_EQUALITY #-} -- Suppress warning UnguardedEtaRecord

record Record {s} (Sig : Signature s) : Set s where
eta-equality
inductive
Expand Down
2 changes: 1 addition & 1 deletion src/Reflection/AST/Traversal.agda
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ open RawApplicative AppF
-- compute the length of the context everytime it's needed.
record Cxt : Set where
constructor _,_
pattern
no-eta-equality; pattern
field
len : ℕ
context : List (String × Arg Term)
Expand Down
Loading