Skip to content

Commit b35a97b

Browse files
committed
Adapt build.yml
1 parent 9467839 commit b35a97b

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
tag: credit-card-views
4040
test_commands: |
4141
compile -c creditcard_views_package_test.json
42-
# FIXME test -c creditcard_views_package_test.json
42+
test -c creditcard_views_package_test.json
4343
4444
- example: healthcare-study-analytics
4545
path: healthcare-study/healthcare-study-analytics
@@ -103,7 +103,7 @@ jobs:
103103
104104
env:
105105
TZ: 'America/Los_Angeles'
106-
SQRL_VERSION: 'dev'
106+
SQRL_VERSION: 'latest'
107107

108108
steps:
109109
- uses: actions/checkout@v4

finance-credit-card-chatbot/credit-card-views/creditcard_views.sqrl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,8 @@ CustomerTransactionWithMerchant :=
3333
/* =======TEST CASES======== */
3434

3535
/*+test */
36-
SpendingByCategoryTest := SELECT * FROM SpendingByCategory ORDER BY customerId DESC, timeWeek DESC limit 5;
36+
SpendingByCategoryTest := SELECT *
37+
FROM SpendingByCategory
38+
ORDER BY customerId DESC, timeWeek DESC, spending DESC
39+
LIMIT 5;
3740

0 commit comments

Comments
 (0)