Skip to content

Commit

Permalink
ci: use ij latest gradle platform plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
ice1000 committed Nov 27, 2024
1 parent fb933ac commit f197722
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
echo "changelog=$CHANGELOG" >> $GITHUB_OUTPUT
echo "pluginVerifierHomeDir=~/.pluginVerifier" >> $GITHUB_OUTPUT
./gradlew listProductsReleases # prepare list of IDEs for Plugin Verifier
./gradlew printProductsReleases # prepare list of IDEs for Plugin Verifier
# # Run tests
# - name: Run Tests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,8 @@ private static boolean matches(@NotNull ProofShape ps, @NotNull Term term) {
return switch (expr.data()) {
case Expr.Hole hole -> new ProofShape.CalmFace();
case Expr.Unresolved e -> e.name().join().equals("?") ? new ProofShape.AnyId() : new ProofShape.Ref(e.name());
case Expr.BinOpSeq seq -> new ProofShape.App(seq.seq().view()
.map(arg -> new ProofShape.Arg(parse(arg.term()), arg.explicit()))
.toImmutableSeq());
case Expr.BinOpSeq (var seq) -> new ProofShape.App(seq
.map(arg -> new ProofShape.Arg(parse(arg.term()), arg.explicit())));
// TODO: more?
case Expr misc -> throw new PatternNotSupported(misc);
};
Expand Down

0 comments on commit f197722

Please sign in to comment.