Skip to content
This repository has been archived by the owner on May 27, 2024. It is now read-only.

Commit

Permalink
ci: disable
Browse files Browse the repository at this point in the history
  • Loading branch information
ice1000 committed Mar 9, 2024
1 parent 145e98e commit bee1452
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/gradle-check.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: test
on:
push:
branches: [main]
# branches: [main]
pull_request:
branches: [main]
# branches: [main]
merge_group:
types: [checks_requested]
# types: [checks_requested]
jobs:
check-aya-version:
uses: aya-prover/aya-dev/.github/workflows/extract-version.yaml@main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-build.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: nightly
on:
push:
branches: [main, ci]
# branches: [main, ci]
jobs:
move-tag:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion base/src/main/java/org/aya/tyck/ExprTycker.java
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ yield subscoped(() -> {
case Expr.Error error -> throw new UnsupportedOperationException("TODO");
case Expr.Let let -> throw new UnsupportedOperationException("TODO");
case Expr.Array array -> throw new UnsupportedOperationException("TODO");
case Expr.Sugar _ -> throw new UnsupportedOperationException("desugared");
case Expr.Unresolved _ -> throw new UnsupportedOperationException("?");
case Expr.Sugar _ -> throw new IllegalArgumentException("these exprs are desugared, should be unreachable");
};
}

Expand Down

0 comments on commit bee1452

Please sign in to comment.