Skip to content

Commit

Permalink
Fix ci for master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
grdsdev committed Oct 6, 2023
1 parent bfafdda commit 9411be9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI
on:
push:
branches:
- main
- master
pull_request:
branches:
- "*"
Expand Down
6 changes: 6 additions & 0 deletions Tests/PostgRESTTests/BuildURLRequestTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,12 @@
.select()
.eq(column: "id", value: "Cigányka-ér (0+400 cskm) vízrajzi állomás")
},
TestCase(name: "query with timestampz") { client in
client.from("tasks")
.select()
.gt(column: "received_at", value: "2023-03-23T15:50:30.511743+00:00")
.order(column: "received_at")
}
]

for testCase in testCases {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
curl \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
"https://example.supabase.co/tasks?order=received_at.asc.nullslast&received_at=gt.2023-03-23T15:50:30.511743+00:00&select=*"

0 comments on commit 9411be9

Please sign in to comment.