chore: format and fix matrix

This commit is contained in:
Zach Daniel 2023-11-17 09:17:11 -05:00
parent bdcbd647f3
commit 944a4e128e
2 changed files with 4 additions and 5 deletions

View file

@ -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

View file

@ -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
@ -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
@ -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