Skip to content

Commit

Permalink
Need to evict dialyzer plt files for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
scohen committed Sep 13, 2023
1 parent ce72536 commit 827808d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:
uses: actions/cache@v3
with:
path: "priv/plts"
key: lexical-plts-1-${{ env.DEFAULT_OTP }}-${{ env.DEFAULT_ELIXIR }}-${{ steps.set_mix_lock_hash.outputs.mix_lock_hash }}
key: lexical-plts-2-${{ env.DEFAULT_OTP }}-${{ env.DEFAULT_ELIXIR }}-${{ steps.set_mix_lock_hash.outputs.mix_lock_hash }}

# Step: Download project dependencies. If unchanged, uses
# the cached version.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
defimpl Lexical.Convertible, for: Lexical.Document.Changes do
alias Lexical.Document

def to_lsp(%Document.Changes{} = document_edits) do
Lexical.Convertible.to_lsp(document_edits.edits)
def to_lsp(%Document.Changes{} = changes) do
Lexical.Convertible.to_lsp(changes.edits)
end

def to_native(%Document.Changes{} = document_edits, _) do
{:ok, document_edits}
def to_native(%Document.Changes{} = changes, _) do
{:ok, changes}
end
end

0 comments on commit 827808d

Please sign in to comment.