Skip to content

Commit

Permalink
chore: format and fix matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
zachdaniel committed Nov 17, 2023
1 parent bdcbd64 commit 944a4e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ on:
jobs:
ash-ci:
strategy:
fail-fast: false
matrix:
postgres_version: ["10", "11", "12", "13", "14", "15", "16"]
postgres_version: ["10", "12", "14", "16"]
uses: ash-project/ash/.github/workflows/ash-ci.yml@main
with:
postgres: true
Expand Down
6 changes: 3 additions & 3 deletions lib/join.ex
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ defmodule AshPostgres.Join do

relationship_destination =
if needs_subquery? do
subquery(from row in relationship_destination, limit: 1)
subquery(from(row in relationship_destination, limit: 1))
else
relationship_destination
end
Expand Down Expand Up @@ -797,7 +797,7 @@ defmodule AshPostgres.Join do

relationship_destination =
if needs_subquery? do
subquery(from row in relationship_destination, limit: 1)
subquery(from(row in relationship_destination, limit: 1))
else
relationship_destination
end
Expand Down Expand Up @@ -920,7 +920,7 @@ defmodule AshPostgres.Join do

relationship_destination =
if needs_subquery? do
subquery(from row in relationship_destination, limit: 1)
subquery(from(row in relationship_destination, limit: 1))
else
relationship_destination
end
Expand Down

0 comments on commit 944a4e1

Please sign in to comment.