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: jobs:
ash-ci: ash-ci:
strategy: strategy:
fail-fast: false
matrix: 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 uses: ash-project/ash/.github/workflows/ash-ci.yml@main
with: with:
postgres: true postgres: true

View file

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